我正在使用Apple https://developer.apple.com/LIBRARY/IOS/samplecode/TableViewUpdates/Introduction/Intro.html的以下示例来创建可扩展的部分,因为我的所有数据都是sqlite(核心数据)因为icloud事物(跨设备同步)。我的主要问题是任何时候我想删除UITableView中的一个部分我必须调用
[self.tableView deleteRowsAtIndexPaths:indexPathsToDelete withRowAnimation:UITableViewRowAnimationTop];
正确的方法是从sqlite中删除有关此主题的任何帮助的实体吗?