我有一个带有标签、指示器视图等的 UITableViewCell 子类。我需要在从网络上检索数据时更新它(特别是我有一个结果数标签)。
我用它来尝试重新加载单元格,但它不起作用。我知道正在调用 cellForRowAtIndexPath,并且数据源本身的值已更新。
[self.myFriendsTbl beginUpdates];
[self.myFriendsTbl reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationNone];
[self.myFriendsTbl] endUpdates];