0
我創建了一個名爲Student的實體,用於存儲學生的詳細信息。構建用於NSArray的ID的NSPredicate
我試圖構建謂詞獲取基於有ID的幾個學生的詳細信息。
NSPredicate *predicate = [NSPredicate predicateWithFormat:[NSString stringWithFormat:@"Sid IN %@",@[@"1",@"2",@"3"]]];
始終得到錯誤
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unable to parse the format string "Sid IN (
1,
2,
3
)"'
是'Sid'是'NSNumber'的類型嗎? – Akhilrajtr 2014-08-28 04:59:14
@Akhilrajtr它的NSString。 – Anand 2014-08-28 05:00:02