XRouter
A simple routing library for iOS projects.
Usage
Basic Usage
Creating a Router
Configuring Routes
Define your routes, like so:
- Note: By default, enum properties dont factor into equality checks/comparisons. You can provide your own
implemention ofvar name: String
orstatic func == (_:_:)
if you would like to override this.
Implement the protocol stubs:
Advanced Usage
URL Support
You only need to do two things to add URL support to your routes.
First, implement the static method registerURLs
in your RouteProvider
.
Here is an example with a single host:
Here is an example with multiple domains:
Then call the openURL method inside your URL handler. Here is Universal Links for example:
Handling errors
It can be messy trying to handle errors in every place you call navigate.
You can set a completion handler for a navigation action:
You could wrap or override the navigate functions to provide a default completion handler, if you handle
all navigation errors in the same way. For example, something like this:
Custom Transitions
Here is an example using the popular Hero Transitions library.
Set the customTransitionDelegate
for the Router
:
(Optional) Define your custom transitions in an extension so you can refer to them statically
Implement the delegate method performTransition(...)
:
And set the transition to .custom
in your Routes.swift
file:
Example
To run the example project, clone the repo, and run it in Xcode 10.
Requirements
Installation
CocoaPods
XRouter is available through CocoaPods. To install
it, simply add the following line to your Podfile:
Author
Reece Como, reece.como@gmail.com