本当に厄介なバグがあります。些細な解決策があるかもしれませんが、私はそれを得ることができません。
NSPredicate
頻繁に使用していますが問題ありません。現在、次のバグが発生しています: キャッチされていない例外 ' NSUnknownKeyException
'、理由: ' '[<TestClass 0x10cf3b80> valueForUndefinedKey:]: this class is not key value coding-compliant for the key testValue.
によりアプリを終了しています
NSString* predicateString = [NSString stringWithFormat:@"name CONTAINS[cd] %@",@"testValue"];
NSPredicate* filterPredicate = [NSPredicate predicateWithFormat:predicateString];
NSArray* filtered = [all filteredArrayUsingPredicate:filterPredicate];
name はNSString*
私のクラスのプロパティであり、all は私のオブジェクトを含む配列です。些細なコードだけで、余分なものはありません。
助けてくれてありがとう!