Swiftgram/LegacyComponents/TGLocationCurrentLocationCell.h
Ilya Laktyushin 1779500354 no message
2017-10-02 20:01:11 +03:00

20 lines
660 B
Objective-C

#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
#import <SSignalKit/SSignalKit.h>
@class TGMessage;
@interface TGLocationCurrentLocationCell : UITableViewCell
@property (nonatomic, weak) UIImageView *edgeView;
- (void)configureForCurrentLocationWithAccuracy:(CLLocationAccuracy)accuracy;
- (void)configureForCustomLocationWithAddress:(NSString *)address;
- (void)configureForLiveLocationWithAccuracy:(CLLocationAccuracy)accuracy;
- (void)configureForStopWithMessage:(TGMessage *)message remaining:(SSignal *)remaining;
@end
extern NSString *const TGLocationCurrentLocationCellKind;
extern const CGFloat TGLocationCurrentLocationCellHeight;