mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-21 16:02:00 +00:00
Update AppIconOptionsController.h
This commit is contained in:
parent
3b77844aaa
commit
7bf6294385
1 changed files with 17 additions and 0 deletions
|
|
@ -2,4 +2,21 @@
|
||||||
|
|
||||||
@interface AppIconOptionsController : UIViewController
|
@interface AppIconOptionsController : UIViewController
|
||||||
|
|
||||||
|
@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
|
@end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue