mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
517 B
Objective-C
18 lines
517 B
Objective-C
#import "TGInterfaceController.h"
|
|
|
|
@interface TGProfilePhotoControllerContext : NSObject <TGInterfaceContext>
|
|
|
|
@property (nonatomic, readonly) int64_t identifier;
|
|
@property (nonatomic, readonly) NSString *imageUrl;
|
|
|
|
- (instancetype)initWithIdentifier:(int64_t)identifier imageUrl:(NSString *)imageUrl;
|
|
|
|
@end
|
|
|
|
@interface TGProfilePhotoController : TGInterfaceController
|
|
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *imageGroup;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceImage *activityIndicator;
|
|
|
|
@end
|