Update RootOptionsController.m

This commit is contained in:
arichornlover 2024-02-18 15:49:09 -06:00 committed by GitHub
parent c5c6643601
commit 855025e6e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}
}
}