标签:
//书籍
static NSString *bookCellId = @"bookCellId";
BookCell *cell = [tableView dequeueReusableCellWithIdentifier:bookCellId];
if (nil == cell) { //不能用alloc init来初始化
//沙盒目录
//第一个参数:xib文件的名字
//第二个参数:cell的所有者(self或者nil)
//第三个参数:cell初始化的时候传递的附加参数(一般传nil)
cell = [[[NSBundle mainBundle] loadNibNamed:@"BookCell" owner:nil options:nil] lastObject];
}
//显示数据
BookModel *model = _bookArray[indexPath.row-1];
[cell configModel:model];
//修改选中状态
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
return cell;
标签:
原文地址:http://www.cnblogs.com/liaods/p/4788661.html