mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-03-11 17:15:32 +00:00
Update AppIconOptionsController.h
This commit is contained in:
parent
77590e541d
commit
d9e66a2422
1 changed files with 15 additions and 0 deletions
|
|
@ -1,5 +1,20 @@
|
|||
#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
|
||||
|
|
|
|||
Loading…
Reference in a new issue