Swiftgram/LegacyComponents/TGPinAnnotationView.h
2017-08-04 18:11:13 +03:00

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