cellForRowAtIndexPath:XCode 模板是不是正确?
Posted
技术标签:
【中文标题】cellForRowAtIndexPath:XCode 模板是不是正确?【英文标题】:cellForRowAtIndexPath: Is it XCode template correct?cellForRowAtIndexPath:XCode 模板是否正确? 【发布时间】:2012-07-27 09:34:59 【问题描述】:这个问题是关于 cellForRowAtIndexPath。
据我所知正确的方法是
UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
if (cell == nil)
cell = [[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"Cell"];
return cell;
但是当我创建主从模板时,代码看起来像这样
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
[self configureCell:cell atIndexPath:indexPath];
return cell;
- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath
NSManagedObject *object = [self.fetchedResultsController objectAtIndexPath:indexPath];
cell.textLabel.text = [[object valueForKey:@"timeStamp"] description];
编辑:问题不在于configureCell atIndexPath。如您所见,这些字符串在 XCode 模板中不存在。
if (cell == nil)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] ;
XCode 模板是否正确?
【问题讨论】:
检查这个,它会给你答案:***.com/questions/5467831/… 【参考方案1】:模板代码正确。
从 ios 5.0 开始,可以为单元格标识符注册一个 nib。每当表格需要一个单元格并且没有剩余可重复使用的单元格时,它都会实例化 nib 并自行创建单元格。
如果你这样做dequeueReusableCellWithIdentifier:
总是返回一个单元格;您不必自己创建它。
注册 nib 的 API 为:registerNib:forCellReuseIdentifier:
。
【讨论】:
以上是关于cellForRowAtIndexPath:XCode 模板是不是正确?的主要内容,如果未能解决你的问题,请参考以下文章
从 cellForRowAtIndexPath 中调用 heightForRowAtIndexPath?
cellForRowAtIndexPath:reloaddata 未调用
tableView:cellForRowAtIndexPath 的保留计数:
UITableView tableView:cellForRowAtIndexPath:没有被调用