mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
24 lines
965 B
Objective-C
24 lines
965 B
Objective-C
#import "WKInterfaceTable+TGDataDrivenTable.h"
|
|
|
|
@class TGBridgeChat;
|
|
@class TGBridgeContext;
|
|
|
|
@interface TGChatsRowController : TGTableRowController
|
|
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *avatarGroup;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *avatarInitialsLabel;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *nameLabel;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *initialsLabel;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *messageTextLabel;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceImage *mediaIcon;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *timeLabel;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *unreadCountGroup;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceLabel *unreadCountLabel;
|
|
@property (nonatomic, weak) IBOutlet WKInterfaceGroup *readGroup;
|
|
|
|
- (void)updateWithChat:(TGBridgeChat *)chat context:(TGBridgeContext *)context;
|
|
|
|
- (void)hideUnreadCountBadge;
|
|
|
|
@end
|