我想将数据保存在核心数据中。删除此警告的最佳方法是什么?
@interface CDPage : NSManagedObject
CDPage *corePage = [CDPage allocWithEntity:entity insertIntoManagedObjectContext:manageContext andWithBOPage:page];
[[AppDelegate instance] saveContext];
警告:未使用的变量“ corePage”
最佳答案
如果您不使用变量corePage,则无需创建它:
[CDPage allocWithEntity:entity insertIntoManagedObjectContext:manageContext andWithBOPage:page];
[[AppDelegate instance] saveContext];
关于ios - 删除警告的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11739736/