现在我将一个名字的NSArray传递给tableViewController;
NSArray *listOfNames = [@"Sally", @"Bob", @"Joe];
listOfNames在segue中传递。我想将每个单元格的标题设置为每个人的名字。
在cellForRowAtIndexPath中,我正在尝试
UITableViewCell *cell = [tableView
dequeueReusableCellWithIdentifier:@"nameCell"
forIndexPath:indexPath];
cell.textLabel.text = self.listOfNames[indexPath.row]; //????
我想要做的就是从数组中取出字符串并将其作为单元格的标题。什么是最好的方法呢?