UITableView dataSource必须从tableView返回一个单元格:cellForRowAtIndexPath“

时间:2013-08-03 20:43:25

标签: ios cocoa-touch uitableview

我已设置UIViewController,其中包含表格视图和单元格。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *identifier = nil;
    NSString *task = [self.tasks objectAtIndex:indexPath.row];
    NSRange urgentRange = [task rangeOfString:@"URGENT"];
    if (urgentRange.location == NSNotFound) {
        identifier = @"plainCell";
    } else {
        identifier = @"attentionCell";
    }
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];

    // Configure the cell...

    UILabel *cellLabel = (UILabel *)[cell viewWithTag:1];
    NSMutableAttributedString *richTask = [[NSMutableAttributedString alloc]
                                           initWithString:task];
    NSDictionary *urgentAttributes =
    @{NSFontAttributeName : [UIFont fontWithName:@"Courier" size:24],
      NSStrokeWidthAttributeName : @3.0};
    [richTask setAttributes:urgentAttributes
                      range:urgentRange];
    cellLabel.attributedText = richTask;

    return cell;
}

我正在尝试学习故事板并创建了这个示例代码。我没有看到或者我能够发现我正在做的错误。我从昨天开始就坚持这个问题而不是理解这个问题。

我请求你的帮助让我继续学习。

这是我想要创建的一个例子。 XCODE项目可以从以下网址下载:

https://dl.dropboxusercontent.com/u/72451425/Simple%20Storyboard.zip

请查看代码并帮助我继续前进。

2 个答案:

答案 0 :(得分:3)

您在故事板中使用的单元格标识符为actionCellplainCell

actionCell。不是attentionCell

在代码中使用正确的单元格标识符

if (urgentRange.location == NSNotFound) {
    identifier = @"plainCell";
} else {
    identifier = @"actionCell";
}

答案 1 :(得分:-3)

您的问题出在此处:UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];

如果之前没有创建过单元格,则可以返回nil单元格。所以,你需要检查它:

// Configure the cell...
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
   cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]]; //or do whatever makes sense for your new cell
}
UILabel *cellLabel = (UILabel *)[cell viewWithTag:1];
NSMutableAttributedString *richTask = [[NSMutableAttributedString alloc] initWithString:task];
NSDictionary *urgentAttributes = @{NSFontAttributeName : [UIFont fontWithName:@"Courier" size:24], NSStrokeWidthAttributeName : @3.0};
[richTask setAttributes:urgentAttributes range:urgentRange];
cellLabel.attributedText = richTask;