3

我有一个 UITableView ,它有一个自定义标题,可以维护一些状态。当我调用 reloadData 来更改/更新 UITableView 中的数据时,标题也会重新加载。有什么方法可以防止这种行为以保持表头中的状态?

4

1 回答 1

3

Don't put those states in the header. You've mixing the "view" with "model" in the MVC design.

Anyway, you could reload specific rows with -reloadRowsAtIndexPaths:withRowAnimation:.

于 2010-05-10T18:28:53.137 回答