0

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

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

我怎样才能用 ruby​​ 的语法写出这样的东西?

4

1 回答 1

3

这是RubyMotion语法:

sections = NSIndexSet.indexSetWithIndex(indexPath.section)
self.tableView.reloadSections sections, withRowAnimation:UITableViewRowAnimationFade
于 2013-03-24T07:32:24.203 回答