如何重新加载表格的特定部分?

[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:indexPath.section] withRowAnimation:UITableViewRowAnimationFade]


如何用ruby的语法编写类似的内容?

最佳答案

这是RubyMotion语法:

sections = NSIndexSet.indexSetWithIndex(indexPath.section)
self.tableView.reloadSections sections, withRowAnimation:UITableViewRowAnimationFade

10-07 19:05