Tagged Questions
The NSMetadataQuery class encapsulates the functionality provided by the MDQuery opaque type for querying the Spotlight metadata.
1
vote
3answers
194 views
NSMetadataQuery doesn't finish gathering (no notification)
I'm making a backup managrer for my App (via iCloud). I did some tests and the basics worked. But few days later it stopped. I'm using NSMetadataQuery for searching if backup file exists. My backup ...
0
votes
0answers
14 views
NSMetadataQuery ignoring custom file package type
I'm using UIManagedDocuments to manage my files in iCloud. After setting up the NSMetadataQuery like so:
iCloudQuery = [[NSMetadataQuery alloc] init];
[iCloudQuery setSearchScopes:
[NSArray ...
0
votes
0answers
22 views
Why does this code cause NSMetadataQuery to crash?
I got an extremely simple Xcode project. It has a single file app delegate with the following content
@interface TestController : NSObject <NSApplicationDelegate, NSMetadataQueryDelegate>
...