标签:
UITableView-02(自定义cell)
UITableViewCell
的子类,比如SJTGCell@interface SJTGCell : UITableViewCell
@end
-initWithStyle:reuseIdentifier:
方法
/**
* 在这个方法中添加所有的子控件
*/
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
// ......
}
return self;
}
-layoutSubviews
方法
[super layoutSubviews]
/**
* 在这个方法中计算所有子控件的frame
*/
- (void)layoutSubviews
{
[super layoutSubviews];
// ......
}
@class SJTG;
@interface SJTGCell : UITableViewCell
/** 团购模型数据 */
@property (nonatomic, strong) SJTG *tg;
@end
- (void)setTg:(SJTG *)tg
{
_tg = tg;
// .......
}
[self.tableView registerClass:[SJTGCell class] forCellReuseIdentifier:ID];
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 访问缓存池
SJTGCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
// 设置数据(传递模型数据)
cell.tg = self.tgs[indexPath.row];
return cell;
}
UITableViewCell
的子类,比如SJTGCell@interface SJTGCell : UITableViewCell
@end
-initWithStyle:reuseIdentifier:
方法
添加子控件的完整约束
/**
* 在这个方法中添加所有的子控件
*/
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
// ......
}
return self;
}
@class SJTG;
@interface SJTGCell : UITableViewCell
/** 团购模型数据 */
@property (nonatomic, strong) SJTG *tg;
@end
- (void)setTg:(SJTG *)tg
{
_tg = tg;
// .......
}
[self.tableView registerClass:[SJTGCell class] forCellReuseIdentifier:ID];
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 访问缓存池
SJTGCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
// 设置数据(传递模型数据)
cell.tg = self.tgs[indexPath.row];
return cell;
}
UITableViewCell
的子类,比如SJTGCell@interface SJTGCell : UITableViewCell
@end
@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
@class SJTG;
@interface SJTGCell : UITableViewCell
/** 团购模型数据 */
@property (nonatomic, strong) SJTG *tg;
@end
- (void)setTg:(SJTG *)tg
{
_tg = tg;
// .......
}
[self.tableView registerNib:[UINib nibWithNibName:NSStringFromClass([SJTGCell class]) bundle:nil] forCellReuseIdentifier:ID];
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 访问缓存池
SJTGCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
// 设置数据(传递模型数据)
cell.tg = self.tgs[indexPath.row];
return cell;
}
UITableViewCell
的子类,比如SJTGCell@interface SJTGCell : UITableViewCell
@end
@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
@class SJTG;
@interface SJTGCell : UITableViewCell
/** 团购模型数据 */
@property (nonatomic, strong) SJTG *tg;
@end
- (void)setTg:(SJTG *)tg
{
_tg = tg;
// .......
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *ID = @"tg";
// 访问缓存池
SJTGCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
// 设置数据(传递模型数据)
cell.tg = self.tgs[indexPath.row];
return cell;
}
@interface SJStatus : 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
{
SJStatus *status = self.statuses[indexPath.row];
return status.cellHeight;
}
- (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
-initWithStyle:reuseIdentifier:
方法
/**
* 在这个方法中添加所有的子控件
*/
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
// ......
}
return self;
}
@class SJStatus;
@interface SJStatusCell : UITableViewCell
/** 团购模型数据 */
@property (nonatomic, strong) SJStatus *status;
@end
- (void)setStatus:(SJStatus *)status
{
_status = status;
// .......
}
-layoutSubviews
方法[super layoutSubviews]
/**
* 在这个方法中设置所有子控件的frame
*/
- (void)layoutSubviews
{
[super layoutSubviews];
// ......
}
标签:
原文地址:http://www.cnblogs.com/king129/p/4993420.html