我第一次在我的应用程序中使用核心数据来解决我的问题我已经做了很多谷歌但我没有找到具体的解决方案。
我有实体:子类别
属性:mainCategoryId,subCategoryName。
现在我想获取数据
Select subCategoryName from SubCategory where mainCategoryId=1;
我实现的代码如下:
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"SubCategory" inManagedObjectContext:managedObjectContext];
[request setEntity:entity];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SubCategoryName == %@",@"Triangular1"];
[request setPredicate:predicate];
NSError *error;
arrSubCategory = [managedObjectContext executeFetchRequest:request error:&error];
如何在 coredata 中获取类似类型的数据
分享你的想法
提前谢谢。