UITableView笔记三
2016-03-31 11:47:39
UITableView使用Xib的注意事项
<!---more--->
创建自定义cell
设置cell Xib的标识
如果为了代码的可读性也可以像#define kTestTableViewCellHeight 60.0f
一样把cell的唯一标识也写成宏定义 放在相同的地方
使用的时候就变成,简洁明了。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
TestTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kTestTableViewCellId forIndexPath:indexPath];
cell.titleLabel.text = self.dataArray[indexPath.row];
return cell;
}
#pragma mark tableView Getter
-(UITableView *)tableView
{
if (!_tableView) {
_tableView = [[UITableView alloc]initWithFrame:self.view.bounds];
[_tableView registerNib:[UINib nibWithNibName:@"TestTableViewCell" bundle:nil] forCellReuseIdentifier:kTestTableViewCellId];
_tableView.delegate = self;
_tableView.dataSource = self;
_tableView.rowHeight = kTestTableViewCellHeight;
[self.view addSubview:_tableView];
}
return _tableView;
}
在TableView中的注册和使用
代码同上
Xib的简单约束和cell上按钮点击回调的简单使用
并附上cell里面的代码:
.h
#import <UIKit/UIKit.h>
#define kTestTableViewCellHeight 60.0f
#define kTestTableViewCellId @"TestTableViewCell"
typedef void(^BtnBlock)();
@interface TestTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
@property (nonatomic, copy)BtnBlock btnBlock;
@end
.m
#import "TestTableViewCell.h"
@implementation TestTableViewCell
- (void)awakeFromNib
{
}
- (IBAction)btnClicked:(id)sender
{
self.btnBlock();
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
}
@end
使用的时候:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
TestTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kTestTableViewCellId forIndexPath:indexPath];
cell.titleLabel.text = self.dataArray[indexPath.row];
cell.btnBlock = ^{
///这里做点击按钮的相关操作。
};
return cell;
}
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦