mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
24 lines
680 B
Objective-C
24 lines
680 B
Objective-C
#import "TGInterfaceController.h"
|
|
|
|
@class TGBridgeContext;
|
|
@class TGBridgeChat;
|
|
|
|
@interface TGNeoConversationControllerContext : NSObject <TGInterfaceContext>
|
|
|
|
@property (nonatomic, strong) TGBridgeContext *context;
|
|
@property (nonatomic, readonly) TGBridgeChat *chat;
|
|
@property (nonatomic, readonly) int64_t peerId;
|
|
@property (nonatomic, copy) void(^finished)(void);
|
|
|
|
- (instancetype)initWithChat:(TGBridgeChat *)chat;
|
|
- (instancetype)initWithPeerId:(int64_t)peerId;
|
|
|
|
@end
|
|
|
|
@interface TGNeoConversationController : TGInterfaceController
|
|
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceTable *table;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceImage *activityIndicator;
|
|
|
|
@end
|