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

UITableView--02(自定义cell)

时间:2015-11-25 01:10:51      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:

 

UITableView-02(自定义cell)

自定义等高cell
 
纯代码frame

新建一个继承自UITableViewCell的子类,比如SJTGCell

@interface SJTGCell : UITableViewCell
@end

在SJTGCell.m文件中

  • 重写-initWithStyle:reuseIdentifier:方法
    • 在这个方法中添加所有需要显示的子控件
    • 给子控件做一些初始化设置(设置字体、文字颜色等)
/**
 *  在这个方法中添加所有的子控件
 */
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
        // ......
    }
    return self;
}

  • 重写-layoutSubviews方法
    • 一定要调用[super layoutSubviews]
    • 在这个方法中计算和设置所有子控件的frame
/**
 *  在这个方法中计算所有子控件的frame
 */
- (void)layoutSubviews
{
    [super layoutSubviews];

    // ......
}

在SJTGCell.h文件中提供一个模型属性,比如SJTG模型

@class SJTG;

@interface SJTGCell : UITableViewCell
/** 团购模型数据 */
@property (nonatomic, strong) SJTG *tg;
@end

在SJTGCell.m中重写模型属性的set方法

  • 在set方法中给子控件设置模型数据
- (void)setTg:(SJTG *)tg
{
    _tg = tg;

    // .......
}

在控制器中

  • 注册cell的类型
[self.tableView registerClass:[SJTGCell class] forCellReuseIdentifier:ID];

  • 给cell传递模型数据
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 访问缓存池
    SJTGCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    // 设置数据(传递模型数据)
    cell.tg = self.tgs[indexPath.row];

    return cell;
}

纯代码Autolayout

新建一个继承自UITableViewCell的子类,比如SJTGCell

@interface SJTGCell : UITableViewCell
@end

在SJTGCell.m文件中

  • 重写-initWithStyle:reuseIdentifier:方法
    • 在这个方法中添加所有需要显示的子控件
    • 给子控件做一些初始化设置(设置字体、文字颜色等)
    • 添加子控件的完整约束
/**
 *  在这个方法中添加所有的子控件
 */
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
        // ......
    }
    return self;
}

在SJTGCell.h文件中提供一个模型属性,比如SJTG模型

@class SJTG;

@interface SJTGCell : UITableViewCell
/** 团购模型数据 */
@property (nonatomic, strong) SJTG *tg;
@end

在SJTGCell.m中重写模型属性的set方法

  • 在set方法中给子控件设置模型数据
- (void)setTg:(SJTG *)tg
{
    _tg = tg;

    // .......
}

在控制器中

  • 注册cell的类型
[self.tableView registerClass:[SJTGCell class] forCellReuseIdentifier:ID];

  • 给cell传递模型数据
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 访问缓存池
    SJTGCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    // 设置数据(传递模型数据)
    cell.tg = self.tgs[indexPath.row];

    return cell;
}

xib方式

新建一个继承自UITableViewCell的子类,比如SJTGCell

@interface SJTGCell : UITableViewCell
@end

 
新建一个xib文件(文件名最好跟类名一致,比如SJTGCell.xib)
  • 修改cell的class为SJTGCell
 
技术分享
  • 绑定循环利用标识

技术分享

  • 添加子控件,设置子控件约束

技术分享

  • 将子控件连线到类扩展中
@interface SJTGCell()
@property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
@property (weak, nonatomic) IBOutlet UILabel *priceLabel;
@property (weak, nonatomic) IBOutlet UILabel *buyCountLabel;
@end

在SJTGCell.h文件中提供一个模型属性,比如SJTG模型

@class SJTG;

@interface SJTGCell : UITableViewCell
/** 团购模型数据 */
@property (nonatomic, strong) SJTG *tg;
@end

在SJTGCell.m中重写模型属性的set方法

  • 在set方法中给子控件设置模型数据
- (void)setTg:(SJTG *)tg
{
    _tg = tg;

    // .......
}

在控制器中

  • 注册xib文件
[self.tableView registerNib:[UINib nibWithNibName:NSStringFromClass([SJTGCell class]) bundle:nil] forCellReuseIdentifier:ID];

  • 给cell传递模型数据
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 访问缓存池
    SJTGCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    // 设置数据(传递模型数据)
    cell.tg = self.tgs[indexPath.row];

    return cell;
}

storyboard方式

新建一个继承自UITableViewCell的子类,比如SJTGCell

@interface SJTGCell : UITableViewCell
@end

 
在storyboard文件中,找到UITableView里面的cell(动态cell)
  • 修改cell的class为SJTGCell
 
技术分享
  • 绑定循环利用标识

技术分享

  • 添加子控件,设置子控件约束

技术分享

  • 将子控件连线到类扩展中
@interface SJTGCell()
@property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
@property (weak, nonatomic) IBOutlet UILabel *priceLabel;
@property (weak, nonatomic) IBOutlet UILabel *buyCountLabel;
@end

在SJTGCell.h文件中提供一个模型属性,比如SJTG模型

@class SJTG;

@interface SJTGCell : UITableViewCell
/** 团购模型数据 */
@property (nonatomic, strong) SJTG *tg;
@end

在SJTGCell.m中重写模型属性的set方法

  • 在set方法中给子控件设置模型数据
- (void)setTg:(SJTG *)tg
{
    _tg = tg;

    // .......
}

在控制器中

  • 给cell传递模型数据
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *ID = @"tg";
    // 访问缓存池
    SJTGCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    // 设置数据(传递模型数据)
    cell.tg = self.tgs[indexPath.row];

    return cell;
}
 

自定义不等高cell(每一个cell的高度不一样)
纯代码frame

给模型增加frame数据

  • 所有子控件的frame
  • cell的高度
@interface SJStatus : NSObject
/**** 文字\图片数据 ****/
// .....

/**** frame数据 ****/
/** 头像的frame */
@property (nonatomic, assign) CGRect iconFrame;
// .....
/** cell的高度 */
@property (nonatomic, assign) CGFloat cellHeight;
@end

  • 重写模型cellHeight属性的get方法
- (CGFloat)cellHeight
{
    if (_cellHeight == 0) {
        // ... 计算所有子控件的frame、cell的高度
    }
    return _cellHeight;
}

在控制器中

  • 实现一个返回cell高度的代理方法
    • 在这个方法中返回indexPath位置对应cell的高度
/**
 *  返回每一行cell的具体高度
 */
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    SJStatus *status = self.statuses[indexPath.row];
    return status.cellHeight;
}

  • 给cell传递模型数据
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *ID = @"tg";
    // 访问缓存池
    SJStatusCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    // 设置数据(传递模型数据)
    cell.status = self.statuses[indexPath.row];

    return cell;
}

新建一个继承自UITableViewCell的子类,比如SJStatusCell

@interface SJStatusCell : UITableViewCell
@end

在SJStatusCell.m文件中

  • 重写-initWithStyle:reuseIdentifier:方法
    • 在这个方法中添加所有需要显示的子控件
    • 给子控件做一些初始化设置(设置字体、文字颜色等)
/**
 *  在这个方法中添加所有的子控件
 */
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
        // ......
    }
    return self;
}

在SJStatusCell.h文件中提供一个模型属性,比如SJStatus模型

@class SJStatus;

@interface SJStatusCell : UITableViewCell
/** 团购模型数据 */
@property (nonatomic, strong) SJStatus *status;
@end

在SJStatusCell.m中重写模型属性的set方法

  • 在set方法中给子控件设置模型数据
- (void)setStatus:(SJStatus *)status
{
    _status = status;

    // .......
}

重写-layoutSubviews方法

  • 一定要调用[super layoutSubviews]
  • 在这个方法中设置所有子控件的frame
/**
 *  在这个方法中设置所有子控件的frame
 */

- (void)layoutSubviews
{
    [super layoutSubviews];

    // ......
}

 

 

UITableView--02(自定义cell)

标签:

原文地址:http://www.cnblogs.com/king129/p/4993420.html

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