私はフェッチされた結果コントローラーを使用しています。これは、UITableView のセクションを使用してセットアップしたいようです。この場合、セクションを使用したくありません。numberOfSectionsInTableView: の値を 1 に設定するのは簡単です。しかし、numberOfRowsInSection: を取得してすべてのセルを 1 つのセクションに戻す方法がわかりません。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
id <NSFetchedResultsSectionInfo> sectionInfo = [[fetchedResultsController sections] objectAtIndex:section];
return [sectionInfo numberOfObjects];
}
1 つのセクションのみを使用したいので、そのメソッドがすべてのセルを返すようにするにはどうすればよいですか?