Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对目标 c 很陌生,我想知道如何更改 UITableviewCell 中数据的顺序,以便我始终在 UITableView 顶部而不是底部的单元格中拥有最新数据,就像现在发生的那样?
只需重新排序您的数据源(很可能是 NSArray),然后调用
[tableView reloadData];
tableView 将再次遍历数据源,并按照数组的顺序显示单元格。
您不需要更改顺序...只需填写您的数组,这样它就可以在他们的注视索引处始终拥有最新的数据!!!