forked from Mojave/ExactTime
Version 1.6
Added support for A12 devices (and added the forgotten source code for iOS 12 :P)
This commit is contained in:
20
exacttimeprefs/ExactTimeprefs.mm
Normal file
20
exacttimeprefs/ExactTimeprefs.mm
Normal 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
|
@ -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
|
||||
|
Reference in New Issue
Block a user