我想让我的单元格加载并反向使用它的数据。基本上,我希望最后一个单元格成为第一个单元格。
答案 0 :(得分:16)
您的意思是想要从轨到头显示您的数据吗? 也许你应该在你的表的数据源方法中执行它:
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
...
NSUInteger row = [indexPath row];
NSUInteger count = [listData count]; // here listData is your data source
cell.textLabel.text = [listData objectAtIndex:(count-row-1)];
return cell;
}