uYouEnhanced/Sources/AppIconOptionsController.h
2024-04-15 22:14:07 -05:00

20 lines
685 B
Objective-C

#import <UIKit/UIKit.h>
// 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