mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
13 lines
377 B
Objective-C
13 lines
377 B
Objective-C
#import "TGViewController.h"
|
|
|
|
@class TGConversation;
|
|
@class TGUser;
|
|
|
|
@interface TGChatSearchController : TGViewController
|
|
|
|
- (instancetype)initWithPeerId:(int64_t)peerId messageSelected:(void (^)(int32_t, NSString *, NSArray *))messageSelected;
|
|
|
|
+ (void)initializeDialogListData:(TGConversation *)conversation customUser:(TGUser *)customUser selfUser:(TGUser *)selfUser;
|
|
|
|
@end
|