请帮我弄清楚为什么第一行不打印单元格文本而第二行不打印:
cell.textLabel.text = [NSString stringWithFormat:@"Hello %@", [swaItems objectAtIndex:indexPath.row]];
cell.textLabel.text = @"Hello";
任何时候都不会产生错误。
答案 0 :(得分:0)
您希望单元格初始化的位置:
NSArray *swaItems = [[NSArray alloc] initWithObjects:@"1", @"2", @"3", nil];
NSString *string = [swaItems objectAtIndex:indexPath];
NSLog(@"%@", string);
cell.textLabel.text = string;
适合我。