Files
ExactTime/exacttimeprefs/RootListController.m
2018-03-18 07:22:31 +02:00

18 rindas
279 B
Objective-C

#include "RootListController.h"
@implementation RootListController
- (NSArray *)specifiers {
if (!_specifiers) {
_specifiers = [[self loadSpecifiersFromPlistName:@"Root" target:self] retain];
}
return _specifiers;
}
-(void)apply{
[self.view endEditing:YES];
}
@end