Update AppIconOptionsController.h

This commit is contained in:
arichornlover 2024-04-15 23:50:27 -05:00 committed by GitHub
parent feda172ea3
commit 63ae617fbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,20 +1,5 @@
#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