UITableViewCell是Nil

时间:2012-06-20 01:18:52

标签: iphone objective-c ios uitableview

我确信这个问题有一个简单的答案,但我似乎无法找到它。我在UITableViewController

中有以下代码
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell==nil)
    {
        NSLog(@"Cell is nil!");
    }

    return cell;
}

但是在我的日志输出中我得到了

  

Cell is nil!

然后立即

  

由于未捕获的异常'NSInternalInconsistencyException'而终止应用程序,原因:'UITableView dataSource必须从tableView返回一个单元格:cellForRowAtIndexPath:'    * 第一次抛出调用堆栈:   (0x1b68d72 0x135fe51 0x1b68bd8 0xb0e315 0xcb373 0x63578 0xcb1d3 0xcff19 0xcffcf 0xb9384 0xc952e 0x691bc 0x13736be 0x215c3b6 0x2150748 0x215055c 0x20ce7c4 0x20cf92f 0x2171da2 0x1b4b4 0x1be63 0x2c2be 0x2cf9f 0x1f3fd 0x1ac5f39 0x1ac5c10 0x1adeda5 0x1adeb12 0x1b0fb46 0x1b0eed4 0x1b0edab 0x1b28f 0x1ce71 0x253d 0x2465)   libc ++ abi.dylib:terminate调用抛出异常   (lldb)

有谁知道为什么会发生这种情况,更重要的是,如何解决这个问题?

提前致谢。

4 个答案:

答案 0 :(得分:3)

如果没有,你必须创建单元格,因为方法

[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

从表视图缓存中返回未使用的单元格。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:NSIndexPath*)indexPath
{
   static NSString *CellIdentifier = @"Cell";
   UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
   if (cell == nil)
   {
       cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
   }

   //configure cell

   return cell;
}

答案 1 :(得分:0)

dequeueReusableCellWithIdentifier返回已创建的单元格,其中包含您传入的标识符,如果存在可以重复使用的标识符。

如果没有,你负责创建一个。

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCustomCellID];
if (cell == nil)
{
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1
                                   reuseIdentifier:kCustomCellID] autorelease];
}

答案 2 :(得分:0)

是的,方法UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];意味着它将重用已经分配了CellIdentifier的单元格。但是你还没有为这个标识符分配任何单元格,对于tableView,它会为屏幕分配一些单元格,然后它将重用具有标识符的单元格,如果你这样做,你会发现它将起作用

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell==nil)
    {
        NSLog(@"Cell is nil!");
        cell = [[[UITableViewCell alloc] initWithSyle:UITableViewCellStyleNormal reuseIdentifier:CellIdentifier] autorelease];
    }

    return cell;
}

参加考试。

答案 3 :(得分:0)

您是否在此课程中使用interface builder?如果是这样,请不要忘记从表视图中进行引用。我有同样的问题,这就是我的情况。