1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-11 08:59:48 +01:00
Telegram/Share/TGShareChatListCell.h
2016-02-25 01:03:51 +01:00

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