在交换机中未处理枚举值’NSFetchedResultsChangeMove’和NSFetchedResultsChangeUpdate’
有任何想法吗?
- (voID)controller:(NSFetchedResultsController *)controller dIDChangeSection:(ID <NSFetchedResultsSectionInfo>)sectionInfo atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type { switch(type) { case NSFetchedResultsChangeInsert: [self.tableVIEw insertSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UItableVIEwRowAnimationFade]; break; case NSFetchedResultsChangeDelete: [self.tableVIEw deleteSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UItableVIEwRowAnimationFade]; break; }}- (voID)controllerDIDChangeContent:(NSFetchedResultsController *)controller { [self.tableVIEw endUpdates];}
提前致谢
解决方法 编译器知道NSFetchedResultsChangeType有四个可能的值,但是您的代码只处理其中的两个.如果您确定不会发生其他两个,则可以忽略该警告.但是最安全的做法是包含一些代码来处理这些其他值,无论是什么都没有,或者是NSLog来查看它们是否确实发生.我想补充一下case NSFetchedResultsChangeMove: NSLog(@"A table item was moved"); break;case NSFetchedResultsChangeUpdate: NSLog(@"A table item was updated"); break;
进入你的switch语句.编辑:检查了文档后,我发现这两个值不用于Section更改,因此您可以忽略警告或在上面的行中添加null case语句来抑制警告.
总结以上是内存溢出为你收集整理的ios – 在交换机中未处理枚举值’NSFetchedResultsChangeMove’和NSFetchedResultsChangeUpdate’全部内容,希望文章能够帮你解决ios – 在交换机中未处理枚举值’NSFetchedResultsChangeMove’和NSFetchedResultsChangeUpdate’所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)