mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-19 04:00:54 +00:00
20 lines
562 B
Objective-C
20 lines
562 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <SSignalKit/SSignalKit.h>
|
|
|
|
@class TGLocationMediaAttachment;
|
|
|
|
@interface TGLocationInfoCell : UITableViewCell
|
|
|
|
@property (nonatomic, copy) void (^locatePressed)(void);
|
|
@property (nonatomic, copy) void (^directionsPressed)(void);
|
|
|
|
@property (nonatomic, readonly) UIButton *directionsButton;
|
|
|
|
- (void)setLocation:(TGLocationMediaAttachment *)location messageId:(int32_t)messageId userLocationSignal:(SSignal *)userLocationSignal;
|
|
|
|
@end
|
|
|
|
extern NSString *const TGLocationInfoCellKind;
|
|
extern const CGFloat TGLocationInfoCellHeight;
|
|
|