mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
17 lines
434 B
Objective-C
17 lines
434 B
Objective-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
|