Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将数据保存在核心数据中。删除此警告的最佳方法是什么?
@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];
不要在您定义的同一行上分配。或者只是不将该语句的结果分配给变量 corePage。