mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-03-11 21:26:04 +00:00
23 lines
623 B
Objective-C
23 lines
623 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppIconOptionsController : UIViewController <UITableViewDataSource, UITableViewDelegate>
|
|
|
|
@property (weak, nonatomic) IBOutlet UITableView *tableView;
|
|
@property (strong, nonatomic) UIButton *backButton;
|
|
|
|
@end
|
|
|
|
@interface UIImage (CustomImages)
|
|
|
|
+ (UIImage *)customBackButtonImage;
|
|
|
|
@end
|
|
|
|
@implementation UIImage (CustomImages)
|
|
|
|
+ (UIImage *)customBackButtonImage {
|
|
NSBundle *bundle = [NSBundle bundleWithPath:[[NSBundle mainBundle] pathForResource:@"uYouPlus" ofType:@"bundle"]];
|
|
return [UIImage imageNamed:@"Back.png" inBundle:bundle compatibleWithTraitCollection:nil];
|
|
}
|
|
|
|
@end
|