tableview的两个获得重用cell方法的区别?

iOSLearn 2012-12-27 12:49:22
tableView: cellForRowAtIndexPath:方法中有两个获得重用cell的方法

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];



UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]

请问他们有什么区别?

并且当我用 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]

的时候

为什么总报错

reason: 'unable to dequeue a cell with identifier Cell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'
...全文
20037 8 打赏 收藏 转发到动态 举报
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
qq_21229523 2014-11-01
  • 打赏
  • 举报
回复



我这样子些是可以的 没有自定义行 并注册之类的操作!
我开始叶鹏到多说是:““ must register a nib or a class for the identifier or connect a prototype cell in a storyboard'””

大概就是需要自定义--注册 之类的。
但是貌似可以不需要。 现在有碰到了。 有些不是很明白。
梦一场Monster 2014-08-21
  • 打赏
  • 举报
回复
- (id)dequeueReusableCellWithIdentifier:(NSString *)identifier; - (id)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath 区别在一个是MRC一个是ARC中的。 第一个是在ARC中用的,就是storyboard中使用,这个不用设置全局变量static,可以直接用重用池, 第二个是在MRC中使用的,需要设置重用池。
chenqiu1024 2014-03-07
  • 打赏
  • 举报
回复
同问。我想知道ios6以后才有的那个新方法有什么用?看文档还是不明白,那个indexPath参数是干什么用的呢?
大招至胜 2014-02-07
  • 打赏
  • 举报
回复
可能用了static cell
iOSLearn 2012-12-28
  • 打赏
  • 举报
回复
我用的xcode 4.5 好像在tableview中拖进来一个uitableviewcell并命名为相应CellIdentifier也可以解决相应问题 不过 一个单独的tableviewcontroller用上面的方法有用, 但当我在子tableviewcontroller中做相应的操作时就不行了,也不知道是我代码还有不对的地方还是怎么的?
Snake_Jay 2012-12-27
  • 打赏
  • 举报
回复
1 这个方法在SDK5.0是运行不起来的。 2 如果需要使用这个方法,你必须使用配套的方法来一起用,下面两个配套方法:

// Beginning in iOS 6, clients can register a nib or class for each cell.
// If all reuse identifiers are registered, use the newer -dequeueReusableCellWithIdentifier:forIndexPath: to guarantee that a cell instance is returned.
// Instances returned from the new dequeue method will also be properly sized when they are returned.
- (void)registerNib:(UINib *)nib forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(5_0);
- (void)registerClass:(Class)cellClass forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
注意看上面的注释 3 比如你已经用NIB做了一个Cell,或者自定义了一个Cell。我们在你创建UITableView的时候,就可以顺带
self.tableView.backgroundColor = xxxx;
[self.tableView registerClass:[CustomCell class] forCellReuseIdentifier:@"CustomCell"];
这样你在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath这个方法里,你就可以省下这些代码:
    static NSString *CellIdentifier = @"Cell";
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
      //设置你的cell
}
而只需要

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
这样就够了,这下你明白了吗?
iOSLearn 2012-12-27
  • 打赏
  • 举报
回复
引用 1 楼 jiangyuaiqing 的回复:
- (id)dequeueReusableCellWithIdentifier:(NSString *)identifier; - (id)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(6……
ios6的新方法? 关键是怎么用?为什么报错?
Snake_Jay 2012-12-27
  • 打赏
  • 举报
回复
- (id)dequeueReusableCellWithIdentifier:(NSString *)identifier; - (id)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(6_0); // newer 区别在这儿

29,028

社区成员

发帖
与我相关
我的任务
社区描述
主要讨论与iOS相关的软件和技术
社区管理员
  • iOS
  • 大熊猫侯佩
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧