我必須從使用NSPredicate (CoreData)
的字符串列表中獲取特定的字符串。爲例如: 如果我有從CoreData
如何從字符串列表中找到特定的字符串?
從上面的列表以下數組的Helloworld
helloworld1234
的HelloWorld 12345
我只需要1和3結果一個。 我曾嘗試以下,但我得到的所有三個作爲結果
NSPredicate *predicate =[NSPredicate predicateWithFormat:@"contactName CONTAINS [c]%@",[arySeperator objectAtIndex:1]];
NSArray *filteredArray1 = [arrayContacts filteredArrayUsingPredicate:predicate];
在哪裏,我錯了?