我现在在我的 iOS 应用程序中使用以下代码从 iCloud 搜索文档
NSPredicate* predicate = [NSPredicate predicateWithFormat:@"%K CONTAINS[c] %@", NSMetadataItemFSNameKey,searchText];
[self.notes filterUsingPredicate:predicate];
[self.tblMainTableView reloadData];
当我运行并搜索它时,它显示错误并显示以下错误消息
*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<Note 0x1cd4ed10> valueForUndefinedKey:]: this class is not key value coding-compliant for the key kMDItemFSName.'
我怎样才能搜索它?