我有两个UITableView
根据UISegmentControl.selectedSegmentIndex
. 第一个表是分组样式,第二个是普通表。
NSFetchedResultsController 用于第一个 UITableView,NSMutableArray 用于第二个。
在我的numberOfSectionsInTableView中:
return [_fetchedResultsController.sections count];
在这种情况下,第二个 UITableView 的数据显示 3 次(因为 FirstTableView 部分计数 = 3)。
我想要第二个 tableView numberOfSectionsInTableView
return 1;