18 rader
388 B
Objective-C
18 rader
388 B
Objective-C
#include "KgeRootListController.h"
|
|
|
|
@implementation KgeRootListController
|
|
|
|
- (NSArray *)specifiers {
|
|
if (!_specifiers) {
|
|
_specifiers = [self loadSpecifiersFromPlistName:@"Root" target:self];
|
|
}
|
|
|
|
return _specifiers;
|
|
}
|
|
|
|
-(void)saveTapped {
|
|
CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), CFSTR("com.yaypixxo.kage/respring"), NULL, NULL, YES);
|
|
}
|
|
|
|
@end
|