11 lines
191 B
Objective-C
11 lines
191 B
Objective-C
#import "NSString+Matcheable.h"
|
|
#import "LSStringMatcher.h"
|
|
|
|
@implementation NSString (Matcheable)
|
|
|
|
- (LSMatcher *)matcher {
|
|
return [[LSStringMatcher alloc] initWithString:self];
|
|
}
|
|
|
|
@end
|