MMKBalloonView
@interface MMKBalloonView : NSObject |
Undocumented
Summary
Properties
@property (nonatomic, readonly, nonnull) MMKBalloonAnchor *anchor; |
@property (nonatomic, readonly, nonnull) MMKBalloon *balloon; |
@property (nonatomic, readonly, getter=isIsVisible) BOOL isVisible; |
@property (nonatomic, assign, unsafe_unretained, readwrite, getter=isIsEnabled) |
@property (nonatomic, readonly, nonnull) MMKDrivingRoute *hostRoute; |
@property (nonatomic, readonly, getter=isValid) BOOL valid; |
Properties
anchor
@property (nonatomic, readonly, nonnull) MMKBalloonAnchor *anchor; |
Undocumented
balloon
@property (nonatomic, readonly, nonnull) MMKBalloon *balloon; |
Undocumented
isVisible
@property (nonatomic, readonly, getter=isIsVisible) BOOL isVisible; |
True if balloon currently visible on the screen. Always false if balloon disabled
isEnabled
@property (nonatomic, assign, unsafe_unretained, readwrite, getter=isIsEnabled) |
If 'true', balloons will be shown whenever it possible. If 'false', balloons will be always hidden. BalloonViewListener.onBalloonContentChanged
is called regardless of isEnabled value. RouteView.showBalloons
call changes this attribute. Enabled by default.
hostRoute
@property (nonatomic, readonly, nonnull) MMKDrivingRoute *hostRoute; |
The route to which this balloon belongs.
valid
@property (nonatomic, readonly, getter=isValid) BOOL valid; |
Tells if this object is valid or no. Any method called on an invalid object will throw an exception. The object becomes invalid only on UI thread, and only when its implementation depends on objects already destroyed by now. Please refer to general docs about the interface for details on its invalidation.