mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 08:59:48 +01:00
20 lines
555 B
Objective-C
20 lines
555 B
Objective-C
#import "TGInterfaceController.h"
|
|
|
|
@class TGBridgeStickerPack;
|
|
|
|
@interface TGStickerPacksControllerContext : NSObject <TGInterfaceContext>
|
|
|
|
@property (nonatomic, readonly) NSArray *stickerPacks;
|
|
@property (nonatomic, copy) void (^completionBlock)(TGBridgeStickerPack *stickerPack);
|
|
|
|
- (instancetype)initWithStickerPacks:(NSArray *)stickerPacks;
|
|
|
|
@end
|
|
|
|
@interface TGStickerPacksController : TGInterfaceController
|
|
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceTable *table;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceImage *activityIndicator;
|
|
|
|
@end
|