UITableView Cell动态数组未加载

时间:2011-08-31 03:08:03

标签: objective-c

请帮我弄清楚为什么第一行不打印单元格文本而第二行不打印:

cell.textLabel.text = [NSString stringWithFormat:@"Hello %@", [swaItems objectAtIndex:indexPath.row]];
cell.textLabel.text = @"Hello";

任何时候都不会产生错误。

1 个答案:

答案 0 :(得分:0)

您希望单元格初始化的位置:

NSArray *swaItems = [[NSArray alloc] initWithObjects:@"1", @"2", @"3", nil];
NSString *string = [swaItems objectAtIndex:indexPath];
NSLog(@"%@", string); 
cell.textLabel.text = string;

适合我。