28 lines
974 B
Objective-C
28 lines
974 B
Objective-C
//
|
|
// NSComparisonPredicate+CogPredicate.m
|
|
// Cog
|
|
//
|
|
// Created by Matthew Grinshpun on 14/02/08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "NSComparisonPredicate+CogPredicate.h"
|
|
|
|
// Ignore case and diacritics
|
|
static const unsigned OPTIONS = (NSCaseInsensitivePredicateOption|
|
|
NSDiacriticInsensitivePredicateOption);
|
|
|
|
@implementation NSComparisonPredicate (CogPredicate)
|
|
|
|
+ (NSPredicate *)predicateForMdKey:(NSString *)key withString:(NSString *)aString
|
|
{
|
|
NSString * likeString = [NSString stringWithFormat:@"*%@*", aString];
|
|
return [NSComparisonPredicate
|
|
predicateWithLeftExpression:[NSExpression expressionForKeyPath:key]
|
|
rightExpression:[NSExpression expressionForConstantValue:likeString]
|
|
modifier:NSDirectPredicateModifier
|
|
type:NSLikePredicateOperatorType
|
|
options:OPTIONS];
|
|
}
|
|
|
|
@end
|