我有一个属性为“group”的实体,因为我想通过“group”(0或1)将我的实体列表分成2个部分
@property (nonatomic, retain) NSNumber * group;
在我的fetchedResultsController中,我将sectionNameKeyPath指定为“group”
self.fetchedResultsController = [[NSFetchedResultsController alloc]
initWithFetchRequest:request managedObjectContext:self.managedObjectContext
sectionNameKeyPath:@"group" cacheName:nil];
如何在以下方法中返回每个部分的行数?我收到以下错误:
Terminating app due to uncaught exception 'NSRangeException', reason:
'-[__NSArrayM objectAtIndex:]: index 1 beyond bounds for empty array'
以下是代码:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [[[self.fetchedResultsController sections] objectAtIndex:section]
numberOfObjects];
}
我也尝试了这个,得到了同样的错误:
id <NSFetchedResultsSectionInfo> sectionInfo = [[self.fetchedResultsController sections]
objectAtIndex:section];
return [sectionInfo numberOfObjects];
请注意,我也实现了这个方法:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 2;
}
答案 0 :(得分:5)
您是否实施了numberOfSectionsInTableView:
?如果你没有实现它,tableView假定你有1个部分,如果fetchedResultsController没有任何部分(即它没有对象),这将导致这个异常。
您必须在[sections count]
中返回numberOfSectionsInTableView:
。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [self.fetchedResultsController.sections count];
}
如果您总是想要显示两个部分,则必须检查fetchedResultsController是否具有所请求的部分。如果fetchedResultsController没有此部分,请不要询问此操作中的对象数。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 2;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
NSInteger count = 0;
NSInteger realNumberOfSections = [self.fetchedResultsController.sections count];
if (section < realNumberOfSections) {
// fetchedResultsController has this section
id <NSFetchedResultsSectionInfo> sectionInfo = [self.fetchedResultsController.sections objectAtIndex:section];
count = [sectionInfo numberOfObjects];
}
else {
// section not present in fetchedResultsController
count = 0; // for empty section, or 1 if you want to show a "no objects" cell.
}
return count;
}
如果你在else中返回0以外的东西,你也需要更改tableView:cellForRowAtIndexPath:
。与此方法类似,您必须检查fetchedResultsController是否在请求的indexPath处有一个对象。
答案 1 :(得分:1)
夫特:
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
let section = fetchedResults.sections?[section]
let sectionCnt = section?.numberOfObjects
return sectionCnt!
}
首先得到这个部分。计算其中的对象数。
注意:要使其工作,fetchedResults对象必须知道如何将数据划分为多个部分!这是在获取请求时实现的。在此行中,将用于划分部分的CoreData属性名称传递给它:
fetchedResults = NSFetchedResultsController(
fetchRequest: fetchRequest,
managedObjectContext: managedContext,
sectionNameKeyPath: "CD_Attribute_Name_GoesHere",
cacheName:nil
)