UITableView简单认识
列表数据
列表数据
,最常用的就是用UITableView
UITableView
继承自UIScrollView
,因此支持垂直滚动,并且性能极佳UITableViewStylePlain
UITableViewStyleGrouped
数据源(dataSource)来显示数据
数据源
查询一共有多少行
数据以及每一行
显示什么数据等没有设置数据源
的UITableView只是个空壳
UITableViewDataSource协议的OC对象
,都可以是UITableView的数据源
若不实现此方法,默认为一组
)- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
- (nullable NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
- (nullable NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;
self.tableView.rowHeight = 100;
self.tableView.sectionHeaderHeight = 80;
self.tableView.sectionFooterHeight = 80;
self.tableView.separatorColor = [UIColor clearColor] ;
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
self.tableView.tableHeaderView = [[UISwitch alloc] init];
self.tableView.tableFooterView = [[UISwitch alloc] init];
// accessoryView的优先级 > accessoryType
cell.accessoryView = [[UISwitch alloc] init];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.selectionStyle = UITableViewCellSelectionStyleNone;
// backgroundView的优先级 > backgroundColor
UIView *bg = [[UIView alloc] init];
bg.backgroundColor = [UIColor blueColor];
cell.backgroundView = bg;
cell.backgroundColor = [UIColor redColor];
UIView *selectedView = [[UIView alloc] init];
selectedView.backgroundColor = [UIColor purpleColor];
cell.selectedBackgroundView = selectedView;
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"选中了:%zd",indexPath.row);
}
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"取消选中了:%zd",indexPath.row);
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
return [UIButton buttonWithType:UIButtonTypeContactAdd];
}
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 100;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row % 2 == 0) {
return 100;
} else {
return 50;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
每当一个cell离开可视范围就会被销毁,而每当用户滚动的时候,又会从新创建一个cell,这样要造成了频繁的开辟内存和销毁内存
解决办法:
标示
去缓存池找(缓存池由TableView自动创建
)cell
,并绑定标示
示例代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// 用static修饰的局部变量延长生命周期,并且只会创建一次
static NSString *ID = @"car";
// 根据ID去缓存池查找是否有可重用的cell
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (cell == nil) {
// 如果找不到,就新建并绑定ID
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
NSLog(@"第%zd行的数据", indexPath.row);
}
return cell;
}
只会执行一次
)
- (void)viewDidLoad {
[super viewDidLoad];
// 当View加载完毕的时候注册某个重用标示对应的cell类型
[self.tableView registerClass:[SJTableViewCell class] forCellReuseIdentifier:ID];
}