Please help me figure out why the first line does not print the cell text while the second one does:
cell.textLabel.text = [NSString stringWithFormat:@"Hello %@", [swaItems objectAtIndex:indexPath.row]];
cell.textLabel.text = @"Hello";
No error is generated at any time.
Where you want the cell to initialize :
Works for me.