我更改了UITableViewCell
标签的颜色并执行了reload
tableview
[m_cEntityView reloadData];
[m_cEntityView selectRowAtIndexPath:self.m_cSelectdPath animated:NO scrollPosition:UITableViewScrollPositionNone];
但是重新加载UITableView
需要花费很多时间,有时它没有显示accessory button
,而是在Rootview controller
。请帮我解决这个问题?
答案 0 :(得分:0)
使用以下方法可以更新表中的整个部分,给定代码将更新第0部分
[tblViewPortfolio beginUpdates];
[tblViewPortfolio reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationNone];
[tblViewPortfolio endUpdates];