Swiftgram/LegacyComponents/TGLocationPinAnnotationView.h
Ilya Laktyushin 53480a35a2 no message
2017-12-23 03:21:01 +04:00

24 lines
577 B
Objective-C

#import <MapKit/MapKit.h>
@class TGLocationPallete;
@interface TGLocationPinAnnotationView : MKAnnotationView
- (instancetype)initWithAnnotation:(id<MKAnnotation>)annotation;
@property (nonatomic, assign, getter=isPinRaised) bool pinRaised;
- (void)setPinRaised:(bool)raised animated:(bool)animated completion:(void (^)(void))completion;
- (void)setCustomPin:(bool)customPin animated:(bool)animated;
@property (nonatomic, strong) TGLocationPallete *pallete;
@end
extern NSString * const TGLocationPinAnnotationKind;
@interface TGLocationPinWrapperView : UIView
@end