7
我想讓我的單元加載並反向使用它的數據。基本上,我想最後一個單元格是第一個。UITableView傳感器反向
我想讓我的單元加載並反向使用它的數據。基本上,我想最後一個單元格是第一個。UITableView傳感器反向
你的意思是你想顯示你的數據從頭到尾? 也許你應該使用你的表的數據源方法執行它:
- (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;
}
我認爲它應該是(count-1-row)。 – DyingCactus 2010-05-11 02:39:28
嗨,你說得對。 :) 我的錯。我會更新它。 – 2010-05-11 02:41:20
這將訪問數據中的相反數字? – Jaba 2010-05-11 03:03:28