mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-20 15:02:08 +00:00
Update RootOptionsController.m
This commit is contained in:
parent
c5c6643601
commit
855025e6e4
1 changed files with 2 additions and 9 deletions
|
|
@ -2,12 +2,6 @@
|
|||
#import "ColourOptionsController.h"
|
||||
#import "ColourOptionsController2.h"
|
||||
|
||||
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)
|
||||
#define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending)
|
||||
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
|
||||
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
|
||||
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending)
|
||||
|
||||
@interface RootOptionsController ()
|
||||
@end
|
||||
|
||||
|
|
@ -15,7 +9,6 @@
|
|||
|
||||
- (void)viewDidLoad {
|
||||
[super viewDidLoad];
|
||||
[self coloursView];
|
||||
|
||||
self.title = @"uYouPlus Extras Menu";
|
||||
|
||||
|
|
@ -100,8 +93,8 @@
|
|||
cache.textAlignment = NSTextAlignmentRight;
|
||||
[cache sizeToFit];
|
||||
cell.accessoryView = cache;
|
||||
cell.imageView.image = [UIImage systemImageNamed:@"trash"];
|
||||
cell.imageView.tintColor = cell.textLabel.textColor;
|
||||
cell.imageView.image = [UIImage systemImageNamed:@"trash"];
|
||||
cell.imageView.tintColor = cell.textLabel.textColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue