diff options
author | Jason Wray <jason@mapbox.com> | 2017-09-28 17:03:41 -0400 |
---|---|---|
committer | Jason Wray <jason@mapbox.com> | 2017-10-02 12:38:25 -0700 |
commit | 076af14b905a99f207db459fa9c7bbf826773082 (patch) | |
tree | 4f9e57ef8b60f13098bd59d9ec540d09de7abd4a /platform/ios | |
parent | 1326a21dddd9f593489202a7f98a12b8af2c5a05 (diff) | |
download | qtlocation-mapboxgl-076af14b905a99f207db459fa9c7bbf826773082.tar.gz |
[ios] Undocument deprecated style class methods
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/src/MGLMapView.h | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/platform/ios/src/MGLMapView.h b/platform/ios/src/MGLMapView.h index 06d958185e..a1347cc09c 100644 --- a/platform/ios/src/MGLMapView.h +++ b/platform/ios/src/MGLMapView.h @@ -283,24 +283,16 @@ MGL_EXPORT IB_DESIGNABLE */ - (IBAction)showAttribution:(id)sender; -/** - Support for style classes has been removed. This property always returns an empty array. - */ +/// :nodoc: Support for style classes has been removed. This property always returns an empty array. @property (nonatomic) NS_ARRAY_OF(NSString *) *styleClasses __attribute__((deprecated("This property is non-functional."))); -/** - Support for style classes has been removed. This property always returns NO. - */ +/// :nodoc: Support for style classes has been removed. This property always returns NO. - (BOOL)hasStyleClass:(NSString *)styleClass __attribute__((deprecated("This method is non-functional."))); -/** - Support for style classes has been removed. This property is a no-op. - */ +/// :nodoc: Support for style classes has been removed. This property is a no-op. - (void)addStyleClass:(NSString *)styleClass __attribute__((deprecated("This method is non-functional."))); -/** - Support for style classes has been removed. This property is a no-op. - */ +/// :nodoc: Support for style classes has been removed. This property is a no-op. - (void)removeStyleClass:(NSString *)styleClass __attribute__((deprecated("This method is non-functional."))); #pragma mark Displaying the User’s Location |