Update AppIconOptionsController.h

This commit is contained in:
arichornlover 2024-04-29 20:34:03 -05:00 committed by GitHub
parent 3b77844aaa
commit 7bf6294385
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,4 +2,21 @@
@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