0

我改变了UITableViewCell标签的颜色并做了reloadtableview

[m_cEntityView reloadData];

[m_cEntityView selectRowAtIndexPath:self.m_cSelectdPath animated:NO scrollPosition:UITableViewScrollPositionNone];

但是重新加载需要很长时间UITableView,有时它不显示accessory button,它在 iPad 中Rootview controller。请帮我解决这个问题?

4

1 回答 1

0

使用以下方法,您可以更新表中的整个部分,给定的代码将更新第 0 部分

[tblViewPortfolio beginUpdates];
[tblViewPortfolio reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationNone];
[tblViewPortfolio endUpdates];
于 2013-03-26T09:56:04.867 回答