mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 08:59:48 +01:00
14 lines
385 B
Objective-C
14 lines
385 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@class TGChatModel;
|
|
@class TGShareContext;
|
|
|
|
@interface TGShareChatListCell : UITableViewCell
|
|
|
|
- (void)setChatModel:(TGChatModel *)chatModel associatedUsers:(NSArray *)associatedUsers shareContext:(TGShareContext *)shareContext;
|
|
|
|
- (void)setSelectionEnabled:(bool)enabled animated:(bool)animated;
|
|
- (void)setChecked:(bool)checked animated:(bool)animated;
|
|
|
|
@end
|