Skip to content

1.2.0

Compare
Choose a tag to compare
@devxoul devxoul released this 19 Apr 14:45
· 177 commits to master since this release
  • Add support mappingContext and navigationContext (#48)

⚠️ Breaking API Changes

URLNavigable

- init?(url: URLConvertible, values: [String: Any], userInfo: [AnyHashable: Any]?)
+ init?(navigation: Navigation)

URLNavigator

- func push(_ url: URLConvertible, userInfo: [AnyHashable: Any]? = nil, from: UINavigationController? = nil, animated: Bool = true) -> UIViewController?
+ func push(_ url: URLConvertible, context: NavigationContext? = nil, from: UINavigationController? = nil, animated: Bool = true) -> UIViewController?
- func present(_ url: URLConvertible, userInfo: [AnyHashable: Any]? = nil, wrap: Bool = false, from: UIViewController? = nil, animated: Bool = true, completion: (() -> Void)? = nil) -> UIViewController?
+ func present(_ url: URLConvertible, context: NavigationContext? = nil, wrap: Bool = false, from: UIViewController? = nil, animated: Bool = true, completion: (() -> Void)? = nil) -> UIViewController?