自定义UITableViewCell
自己的应用中需要一种非普通格式的cell,于是自己就定义了一下;基本上的代码类似如下:
static NSString *captionCellWithIdentifier = @"captionCell";
//使用自定义的cell模板
static BOOL nibRegistered = NO;
if(!nibRegistered){
UINib *nib = [UINib nibWithNibName:@"captionCell" bundle:nil];
[self.personTable registerNib:nib forCellReuseIdentifier:captionCellWithIdentifier];
nibRegistered = YES;
}
captionCell *cell = [self.personTable dequeueReusableCellWithIdentifier:captionCellWithIdentifier];
if(cell == nil){
cell = [[captionCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:captionCellWithIdentifier];
}
cell.contentView.backgroundColor = [UIColor grayColor];
cell.firstTitle.text = @"3月4日 艺人新媒体指数";
cell.firstTitle.textColor = [UIColor whiteColor];
cell.secondTitle.text = @"www.vlinkage.com";
cell.secondTitle.textColor = [UIColor whiteColor];
cell.selectionStyle=UITableViewCellSelectionStyleNone;
return cell;
版权声明
由 davidzhang创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/128
版权声明
由 davidzhang创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/128