0
我有一個核心數據表,其中包含100個數據和一個可變數組有一些數據。 IW螞蟻搜索可變數組包含數據存在於表或not.mutable陣列包含3個PARAMS使用這些PARAMS我需要找出。那包含i中的表 一個id正在使用此代碼Coredata發現一個數組包含值
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"%@ IN [email protected]" ,self.beaconListArray ];
request.predicate = predicate;
NSError *error = nil;
NSArray *objs = [managedObjectContext executeFetchRequest:request error:&error];
if (error) {
[NSException raise:@"no find" format:@"%@", [error localizedDescription]];
NSLog(@"there is noooo with same id exsist");
}
if (objs.count > 0) {
NSLog(@"there is a with same id exsist. Use update method");
}else {
NSLog(@"there's no with same id. Use insert method");
}
我有一個可變數組 { 主要= 1; minor = 4541; uuid =「xxxxxxxx」; }, { major = 1; minor = 6000; uuid =「xxxxxxx」; }, 使用此數據我想在coredata數據表中搜索並找出相應的id.using該id我需要在我的視圖中顯示的東西。 如何獲取這些 – Manju