mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-19 04:00:54 +00:00
17 lines
556 B
Objective-C
17 lines
556 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <CoreLocation/CoreLocation.h>
|
|
|
|
@interface TGLocationCurrentLocationCell : UITableViewCell
|
|
|
|
@property (nonatomic, weak) UIImageView *edgeView;
|
|
|
|
- (void)configureForCurrentLocationWithAccuracy:(CLLocationAccuracy)accuracy;
|
|
- (void)configureForCustomLocationWithAddress:(NSString *)address;
|
|
- (void)configureForLiveLocationWithAccuracy:(CLLocationAccuracy)accuracy;
|
|
- (void)configureForStopLiveLocation;
|
|
|
|
@end
|
|
|
|
extern NSString *const TGLocationCurrentLocationCellKind;
|
|
extern const CGFloat TGLocationCurrentLocationCellHeight;
|