码迷,mamicode.com
首页 > 其他好文 > 详细

蓝懿教育 自定义cell

时间:2015-09-18 00:32:26      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:

自定义cell的三种方式:

1、纯代码创建(布局内容经常改变的)

2、通过storyboard(显示固定,不涉及复用)

3、通过Xib(显示固定,但涉及复用)

// dequeueRe...方法 如果是纯代码创建 就是一个参数 如果是storyboard创建 就是两个参数

通过Xib创建

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

    MyTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];    

    if (!cell) {

        cell = [[[NSBundle mainBundle]loadNibNamed:@"MyTableViewCell" owner:self options:nil]lastObject];

    }

    return cell;

}

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

    return 130;                                  //每行高度为130

}

蓝懿教育 自定义cell

标签:

原文地址:http://www.cnblogs.com/stuyingiOS/p/4817907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!