mirror of
https://github.com/danog/Telegram.git
synced 2024-12-12 09:29:55 +01:00
17 lines
434 B
C
17 lines
434 B
C
|
#import "TGInterfaceController.h"
|
||
|
|
||
|
@interface TGProfilePhotoControllerContext : NSObject <TGInterfaceContext>
|
||
|
|
||
|
@property (nonatomic, readonly) NSString *imageUrl;
|
||
|
|
||
|
- (instancetype)initWithImageUrl:(NSString *)imageUrl;
|
||
|
|
||
|
@end
|
||
|
|
||
|
@interface TGProfilePhotoController : TGInterfaceController
|
||
|
|
||
|
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *imageGroup;
|
||
|
@property (nonatomic, weak) IBOutlet WKInterfaceImage *activityIndicator;
|
||
|
|
||
|
@end
|