bifurqué depuis Mojave/ExactTime
Added support for A12 devices (and added the forgotten source code for iOS 12 :P)
21 lignes
383 B
Objective-C
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
|