現時点では、メールの本文を検索する spotlight-api コードがあります。NSMetadataQuery
の述語を使用して作成してい"kMDItemTextContent like[c] %@"
ます。これは、要求された「検索語」が電子メールの本文にある場合に正常に機能します。
Spotlight アプリ (右上の拡大鏡アイコン) で「to: john」と入力すると、「to」フィールドに「john」という単語が含まれるメールのリストが表示されます (たとえば、メール アドレス john@something.com の一部)。
タイプ、、、および[NSCompoundPredicate orPredicateWithSubpredicates:]
の述語を追加することで、これを実現しようとしました。残念ながら、これは目的のメールを返しません。"kMDItemRecipients"
"kMDItemRecipientEmailAddresses"
"kMDItemAuthors"
"kMDItemAuthorEmailAddresses"
"kMDItemSubject"
Spotlight-API を使用してこれを達成する方法を知っている人はいますか?
以下はこれのための私のコードです:
NSString *predicateFormat = @"kMDItemTextContent like[c] %@";
NSPredicate *predicateToRun = [NSPredicate predicateWithFormat:predicateFormat, self.searchKey];
NSString *predicateFormat1 = @"kMDItemTitle like[c] %@";
NSPredicate *predicateToRun1 = [NSPredicate predicateWithFormat:predicateFormat1, self.searchKey];
NSString *predicateFormat2 = @"kMDItemAuthorEmailAddresses like[c] %@";
NSPredicate *predicateToRun2 = [NSPredicate predicateWithFormat:predicateFormat2, self.searchKey];
NSString *predicateFormat3 = @"kMDItemAuthors like[c] %@";
NSPredicate *predicateToRun3 = [NSPredicate predicateWithFormat:predicateFormat3, self.searchKey];
NSString *predicateFormat4 = @"kMDItemRecipientEmailAddresses like[c] %@";
NSPredicate *predicateToRun4 = [NSPredicate predicateWithFormat:predicateFormat4, self.searchKey];
NSString *predicateFormat5 = @"kMDItemRecipients like[c] %@";
NSPredicate *predicateToRun5 = [NSPredicate predicateWithFormat:predicateFormat5, self.searchKey];
NSString *predicateFormat6 = @"kMDItemSubject like[c] %@";
NSPredicate *predicateToRun6 = [NSPredicate predicateWithFormat:predicateFormat6, self.searchKey];
NSUInteger options = (NSCaseInsensitivePredicateOption|NSDiacriticInsensitivePredicateOption);
NSPredicate *compPred = [NSComparisonPredicate
predicateWithLeftExpression:[NSExpression expressionForKeyPath:@"*"]
rightExpression:[NSExpression expressionForConstantValue:self.searchKey]
modifier:NSDirectPredicateModifier
type:NSLikePredicateOperatorType
options:options];
predicateToRun = [NSCompoundPredicate orPredicateWithSubpredicates:
[NSArray arrayWithObjects:
compPred,
predicateToRun, predicateToRun1, predicateToRun2, predicateToRun3, predicateToRun4,
predicateToRun5, predicateToRun6, nil]];
predicateToRun = [NSCompoundPredicate andPredicateWithSubpredicates:
[NSArray arrayWithObjects:predicateToRun, [NSPredicate predicateWithFormat:@"(kMDItemContentType != 'public.vcard')"], nil]];
[self.query setPredicate:predicateToRun];
[self.query startQuery];