iOS开发攻城狮的集散地码农的世界IOS

iOS 纯代码编写“自定义不等高tableViewCell”

2017-10-24  本文已影响53人  齐舞647
一、给模型增加frame数据
@interface BQStatus : NSObject
/**** 文字\图片数据 ****/
// .....

/**** frame数据 ****/
/** 头像的frame */
@property (nonatomic, assign) CGRect iconFrame;
// .....
/** cell的高度 */
@property (nonatomic, assign) CGFloat cellHeight;
@end
- (CGFloat)cellHeight
{
    if (_cellHeight == 0) {
        // ... 计算所有子控件的frame、cell的高度
    }
    return _cellHeight;
}
二、在控制器中
/**
 *  返回每一行cell的具体高度
 */
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    BQStatus *status = self.statuses[indexPath.row];
    return status.cellHeight;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 访问缓存池
    BQStatusCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

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

    return cell;
}
三、新建一个继承自UITableViewCell的子类,比如BQStatusCell
@interface BQStatusCell : UITableViewCell
@end
四、在BQStatusCell.m文件中
/**
 *  在这个方法中添加所有可能需要显示的子控件
 */
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
        // ......
    }
    return self;
}
五、在BQStatusCell.h文件中提供一个模型属性,比如BQStatus模型
@class BQStatus;

@interface BQStatusCell : UITableViewCell
/** 微博模型数据 */
@property (nonatomic, strong) BQStatus *status;
@end
六、在BQStatusCell.m中重写模型属性的set方法
- (void)setStatus:(BQStatus *)status
{
    _status = status;

    // .......
}
七、重写-layoutSubviews方法
/**
 *  在这个方法中设置所有子控件的frame
 */
- (void)layoutSubviews
{
    [super layoutSubviews];

    // ......
}
效果图: BQTableView-2

实例代码:BQTableViewCell-2
https://github.com/MrLiu-647/BQTableViewCell-2

上一篇下一篇

猜你喜欢

热点阅读