-3

第二次尝试启动我的应用程序时出现上述错误。我第一次正确理解它。但是当我尝试选择 tableview 时,我收到了错误。请帮我

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellIdentifier =CELL_IDENTIFIER_STRING;

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if (cell == nil)
    {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] autorelease];

    cell.textLabel.text = [arrayname objectAtIndex:indexPath.row];
    cell.textLabel.backgroundColor=[UIColor clearColor];

    cell.textLabel.textColor=UIColorFromRGB(0xffffff);

    return cell;

}
4

1 回答 1

2
- (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] autorelease];
    }
//////     *****************************

    cell.textLabel.text = [arrayname objectAtIndex:indexPath.row];
    cell.textLabel.backgroundColor=[UIColor clearColor];

    cell.textLabel.textColor=UIColorFromRGB(0xffffff);

    return cell;

}
于 2013-10-24T09:44:30.117 回答