mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
21 lines
655 B
Objective-C
21 lines
655 B
Objective-C
#import "TGInterfaceController.h"
|
|
|
|
@class TGBridgeLocationMediaAttachment;
|
|
|
|
@interface TGLocationControllerContext : NSObject <TGInterfaceContext>
|
|
|
|
@property (nonatomic, copy) void (^completionBlock)(TGBridgeLocationMediaAttachment *location);
|
|
|
|
@end
|
|
|
|
@interface TGLocationController : TGInterfaceController
|
|
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceTable *table;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *activityGroup;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceImage *activityIndicator;
|
|
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *alertGroup;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *alertLabel;
|
|
|
|
@end
|