Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make NavigationSettings.shared accessible in Objective-C #1882

Merged
merged 1 commit into from
Dec 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
### Other changes

* This release includes a possible fix for spurious rerouting when passing an intermediate waypoint. ([#1869](https://github.com/mapbox/mapbox-navigation-ios/pull/1869))
* The `NavigationSettings.shared` property is now accessible in Objective-C code as `MBNavigationSettings.sharedSettings`. ([#1882](https://github.com/mapbox/mapbox-navigation-ios/pull/1882))

## v0.25.0 (November 22, 2018)

Expand Down
4 changes: 4 additions & 0 deletions MapboxCoreNavigation/NavigationSettings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ public class NavigationSettings: NSObject {
}
}

/*
The shared navigation settings object that affects the entire application.
*/
@objc(sharedSettings)
public static let shared = NavigationSettings()

/// Returns a reflection of this class excluding the `properties` variable.
Expand Down