mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-19 12:10:55 +00:00
20 lines
432 B
Objective-C
20 lines
432 B
Objective-C
#import <MapKit/MapKit.h>
|
|
|
|
@interface TGPinAnnotationView : MKPinAnnotationView
|
|
{
|
|
UIButton *_calloutWrapper;
|
|
|
|
UILabel *_titleLabel;
|
|
UILabel *_subtitleLabel;
|
|
}
|
|
|
|
@property (nonatomic, copy) void(^calloutPressed)(void);
|
|
|
|
@property (nonatomic, assign) NSString *title;
|
|
@property (nonatomic, assign) NSString *subtitle;
|
|
@property (nonatomic, assign) bool selectable;
|
|
|
|
@property (nonatomic, readonly) bool appeared;
|
|
|
|
@end
|