mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
13 lines
383 B
Objective-C
13 lines
383 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface ProxyWindowController : UIViewController
|
|
|
|
- (instancetype)initWithLight:(bool)light text:(NSString *)text icon:(UIImage *)icon isShield:(bool)isShield showCheck:(bool)showCheck;
|
|
|
|
- (void)dismissWithSuccess:(void (^)(void))completion increasedDelay:(bool)increasedDelay;
|
|
- (void)updateLayout;
|
|
|
|
+ (UIImage *)generateShieldImage:(bool)isLight;
|
|
|
|
@end
|