From d9e66a2422f00705749d16d571755a71c48eb96c Mon Sep 17 00:00:00 2001 From: arichornlover <78001398+arichornlover@users.noreply.github.com> Date: Mon, 15 Apr 2024 22:14:07 -0500 Subject: [PATCH] Update AppIconOptionsController.h --- Sources/AppIconOptionsController.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Sources/AppIconOptionsController.h b/Sources/AppIconOptionsController.h index 7272db7..ec25446 100644 --- a/Sources/AppIconOptionsController.h +++ b/Sources/AppIconOptionsController.h @@ -1,5 +1,20 @@ #import +// YTAlertView +@interface YTAlertView : UIView +@property (nonatomic, copy, readwrite) UIImage *icon; +@property (nonatomic, copy, readwrite) NSString *title; +@property (nonatomic, copy, readwrite) NSString *subtitle; +@property (nonatomic, strong, readwrite) UIView *customContentView; +@property (nonatomic, assign, readwrite) UIEdgeInsets customContentViewInsets; //(8, 24, 0, 24) by default +- (CGRect)frameForDialog; +- (void)show; + ++ (instancetype)infoDialog; ++ (instancetype)confirmationDialogWithAction:(void (^)(void))action actionTitle:(NSString *)actionTitle; +@end + +// AppIconOptionsController @interface AppIconOptionsController : UIViewController @end