mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 19:40:19 +00:00
14 lines
466 B
Objective-C
14 lines
466 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <CoreLocation/CoreLocation.h>
|
|
|
|
@interface TGLocationCurrentLocationCell : UITableViewCell
|
|
|
|
- (void)configureForCurrentLocationWithAccuracy:(CLLocationAccuracy)accuracy;
|
|
- (void)configureForCustomLocationWithAddress:(NSString *)address;
|
|
- (void)configureForLiveLocationWithAccuracy:(CLLocationAccuracy)accuracy;
|
|
|
|
@end
|
|
|
|
extern NSString *const TGLocationCurrentLocationCellKind;
|
|
extern const CGFloat TGLocationCurrentLocationCellHeight;
|