IOS--常用控件--UITableView--xib自定义cell
2014-08-11 14:18 doudo 阅读(213) 评论(0) 编辑 收藏 举报-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier=@"TableViewCell";
//tagAlloc为一个全局的BOOL类型标志
if (!tagAlloc) {
UINib *nib=[UINib nibWithNibName:@"TableViewCell" bundle:nil];
[tableView registerNib:nib forCellReuseIdentifier:cellIdentifier];
tagAlloc=YES;
}
TableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
cell.myCellTitle.text=@"asdf";
return cell;
}