Version 1.6

Added support for A12 devices (and added the forgotten source code for iOS 12 :P)
This commit is contained in:
2019-05-11 20:15:50 +03:00
committed by GitHub
parent 98a5ca46c6
commit 427443a2c7
6 changed files with 98 additions and 8 deletions

View File

@ -0,0 +1,20 @@
#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

View File

@ -1,9 +1,9 @@
ARCHS = armv7 arm64
ARCHS = armv7 arm64 arm64e
export TARGET = iphone:clang:11.2:7.0
include $(THEOS)/makefiles/common.mk
BUNDLE_NAME = ExactTimeprefs
ExactTimeprefs_FILES = RootListController.m
ExactTimeprefs_FILES = ExactTimeprefs.mm
ExactTimeprefs_INSTALL_PATH = /Library/PreferenceBundles
ExactTimeprefs_FRAMEWORKS = UIKit
ExactTimeprefs_PRIVATE_FRAMEWORKS = Preferences