2010-05-11 85 views

回答

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; 
} 
+0

我認爲它應該是(count-1-row)。 – DyingCactus 2010-05-11 02:39:28

+0

嗨,你說得對。 :) 我的錯。我會更新它。 – 2010-05-11 02:41:20

+0

這將訪問數據中的相反數字? – Jaba 2010-05-11 03:03:28