我在我的問題的應用程序中第一次使用核心數據我已經完成了很多google,但沒有找到具體的解決方案。iPhone:與核心數據中的「where」子句類似
我實體:子類別
屬性: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
分享你的想法
thanx提前。
你能後,你已經嘗試到現在的任何代碼? – iDev