1
0
зеркало из https://github.com/gilshahar7/ExactTime.git synced 2025-07-01 17:26:45 +00:00
Files
ExactTime/exacttimeprefs/RootListController.m
2018-03-18 07:22:31 +02:00

18 строки
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