Fichiers
ExactTime/exacttimeprefs/ExactTimeprefs.mm
Gil Shahar 427443a2c7 Version 1.6
Added support for A12 devices (and added the forgotten source code for iOS 12 :P)
2019-05-11 20:15:50 +03:00

21 lignes
383 B
Objective-C

#import <Preferences/PSListController.h>
@interface ExactTimeprefsListController: PSListController {
}
@end
@implementation ExactTimeprefsListController
- (id)specifiers {
if(_specifiers == nil) {
_specifiers = [[self loadSpecifiersFromPlistName:@"ExactTimeprefs" target:self] retain];
}
return _specifiers;
}
-(void)apply{
[self.view endEditing:YES];
}
@end
// vim:ft=objc