You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**3. Create an instance of `DPLDeepLinkRouter` in your app delegate**
71
67
@@ -78,7 +74,6 @@ Add deep link support to your app in 5 minutes or less following these simple st
78
74
return YES;
79
75
}
80
76
````
81
-
<br />
82
77
83
78
**4. Register a route handler**
84
79
@@ -98,8 +93,6 @@ self.router.register("/log/:message") { link in
98
93
}
99
94
````
100
95
101
-
<br />
102
-
103
96
**5. Pass incoming URLs to the router**
104
97
105
98
```objc
@@ -113,7 +106,7 @@ self.router.register("/log/:message") { link in
113
106
```
114
107
115
108
**6. Passing `NSUserActivity` objects to the router** (optional)
116
-
<br/>
109
+
117
110
_**Note:** If your application supports [Apple's new universal links](https://developer.apple.com/library/prerelease/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS9.html#//apple_ref/doc/uid/TP40016198-DontLinkElementID_2), implement the following in your app delegate:_
0 commit comments