[iOS开发]自定义cell
Posted Billy Miracle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[iOS开发]自定义cell相关的知识,希望对你有一定的参考价值。
思路:
- 创建一个继承于UITableView的FirstTableViewCell
- 添加属性
- 写方法
- 使用
添加属性
@interface FirstTableViewCell : UITableViewCell
@property (nonatomic, strong) UILabel *label;
@property (nonatomic, strong) UIImageView *tempImageView;
@end
写方法
必须重写的方法是:
-(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
-(void)layoutSubviews
示例:
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if ([self.reuseIdentifier isEqualToString:@"first"]) {
_testLabel = [[UILabel alloc] init];
[self.contentView addSubview:_testLabel];
_testLabel.text = @"first";
_testImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"temp.png"]];
[self.contentView addSubview:_testImageView];
} else {
_testLabel = [[UILabel alloc] init];
[self.contentView addSubview:_testLabel];
_testLabel.text = @"second";
_testImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"temp2.png"]];
[self.contentView addSubview:_testImageView];
}
return self;
}
- (void)layoutSubviews {
_testLabel.frame = CGRectMake(65, 15, 50, 50);
_testImageView.frame = CGRectMake(0, 0, 50, 50);
}
应用:
在ViewController.h文件中加入协议
@interface ViewController : UIViewController
<UITableViewDelegate,UITableViewDataSource>
@property(nonatomic, strong) UITableView *tableView;
在ViewController.m中:
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
_tableView = [[UITableView alloc] initWithFrame:self.view.frame];
[self.view addSubview:_tableView];
self.tableView.delegate = self;
self.tableView.dataSource = self;
//对cell进行注册
[self.tableView registerClass:[FirstTableViewCell class] forCellReuseIdentifier:@"first"];
[self.tableView registerClass:[FirstTableViewCell class] forCellReuseIdentifier:@"second"];
}
- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 10;
}
- (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 100;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row % 2 == 0) {
//创建自定义cell
FirstTableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"first" forIndexPath:indexPath];
return cell;
} else {
FirstTableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"second" forIndexPath:indexPath];
return cell;
}
}
@end
如果在同一个tableView里需要使用的cell样式不同,比如第一个单元格里有一张图和一句话,而第二个单元格里只有一张图,那么需要另自定义一个cell,即定义两个cell。如果你在第二个单元格里仍然使用同一个cell,那么即使你没有给label赋值,它的空间也已经申请了,在层次图中可以看到.
以上是关于[iOS开发]自定义cell的主要内容,如果未能解决你的问题,请参考以下文章