首页 > 代码库 > tableView cell 复用 第二种
tableView cell 复用 第二种
cell 第二种方法 (1)
static NSString * ideng = @"reuse";
cell 第二种方法 (2)
注册复用cell (cell 的类型和标识符) (可以同时注册多个cell , 方法相同 , 一定要保证标识符是不一样的)
注册到了tableView的复用池
[self.tableView registerClass:[TableViewCell class] forCellReuseIdentifier:ideng];
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
cell 第二种方法 (3)
用复用池中找cell (1.cell的标识符 , 2. indexPath:决定系统用不用给你创建cell , 不用创建的话 , 复用之前的cell )
TableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:ideng forIndexPath:indexPath];
return cell;
}
tableView cell 复用 第二种
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。