-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathAppController.m
50 lines (40 loc) · 1.34 KB
/
AppController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#import "AppController.h"
#import "RPTokenControl.h"
#import "RPCountedToken.h"
@implementation AppController
- (IBAction)selectionChanged:(id)sender {
NSLog(@"%@ has sent an action", sender) ;
}
- (void)awakeFromNib {
[source setDelegate:self] ;
[[source window] setDelegate:self] ; //catch close
[self textDidChange:nil] ;
// These are set in InterfaceBuilder
// [tokenControl setTarget:self] ;
// [tokenControl setAction:@selector(selectionChanged:)] ;
[tokensArrayController bind:@"contentArray"
toObject:tokenControl
withKeyPath:@"selectedTokens"
options:nil] ;
}
- (void)windowWillClose:(NSNotification *)notification {
[NSApp terminate:self];
}
- (void)textDidChange:(NSNotification *)note {
NSCountedSet *words = [[NSCountedSet alloc] init];
NSString *text = [source string];
NSScanner *scan = [[NSScanner alloc] initWithString:text];
NSCharacterSet* alphaChars = [NSCharacterSet alphanumericCharacterSet];
[scan scanUpToCharactersFromSet:alphaChars intoString:nil];
while(![scan isAtEnd]) {
NSString *word = nil;
[scan scanCharactersFromSet:alphaChars intoString:&word];
word = [word lowercaseString];
[words addObject:word] ;
[scan scanUpToCharactersFromSet:alphaChars intoString:nil];
}
[tokenControl setObjectValue:words];
[scan release] ;
[words release];
}
@end