1
0
mirror of https://github.com/danog/Telegram.git synced 2025-01-06 04:58:56 +01:00
Telegram/Share/TGShareChatListCell.h

14 lines
385 B
C
Raw Normal View History

2015-10-01 18:19:52 +02:00
#import <UIKit/UIKit.h>
@class TGChatModel;
@class TGShareContext;
@interface TGShareChatListCell : UITableViewCell
- (void)setChatModel:(TGChatModel *)chatModel associatedUsers:(NSArray *)associatedUsers shareContext:(TGShareContext *)shareContext;
2016-02-25 01:03:51 +01:00
- (void)setSelectionEnabled:(bool)enabled animated:(bool)animated;
- (void)setChecked:(bool)checked animated:(bool)animated;
2015-10-01 18:19:52 +02:00
@end