首页 > 其他 > 详细

UITableView控件Protocell的Identifier设置 注意事项

时间:2016-02-17 22:15:10      阅读:136      评论:0      收藏:0      [点我收藏+]

1.  注意:如果想使用Subtitle类型的单元格,需在Storyboard中将Protocell设置为subtitle类型,且Protocellidentifier必须与ViewController中cellForRow方法设置,保持一致,才能保证在subtitle行内容被显示出来。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

 

    static NSString *ID = @"video"; //====注意错误:需在Storyboard中将Protocell设置为subtitle类型,并将此处ID"video"写在Protocellidentifier后面,才能保证在subtitle行显示视频的时长=========//

    

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID forIndexPath:indexPath];

    

    if (cell == nil) {

        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];

    }

    

    WZVideo *video = self.videosM[indexPath.row];

    cell.textLabel.text = video.name;

    cell.detailTextLabel.text = [NSString stringWithFormat:@"时长:%d 分钟",video.length];

    

    return cell;

}

2. YellowGuys应用截图:

技术分享

技术分享

UITableView控件Protocell的Identifier设置 注意事项

原文:http://www.cnblogs.com/stevenwuzheng/p/5196613.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!