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
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ pod 'Iterable-iOS-AppExtensions'
29
29
```
30
30
31
31
32
-
Please look at the included sample pod file [HERE](./sample-apps/swift-sample-app/Podfile).
32
+
Please look at the included sample pod file [HERE](https://github.com/Iterable/swift-sdk/blob/master/sample-apps/swift-sample-app/Podfile?raw=true).
33
33
34
34
Congratulations! You have now imported Iterable SDK into your project!
35
35
@@ -42,22 +42,22 @@ Attached to the release you will find two framework bundles.
42
42
43
43
1. In XCode choose the target for your app. Now add IterableSDK.framework to the **embedded binaries** section. If you want to use Iterable Rich Notification Extension, you will have to add IterableAppExtensions.framework to the embedded binaries section as well.
2. If you want to use Iterable Rich Notifiation Extension, you will need to add IterableAppExtension.framework to **Linked Frameworks and Libraries** section of your **app extension** target (not app target). Please note that you will have to add the IterableAppExtension.framework bundle to **both** the app target (step 1) and app extension target (step 2) of your project. In the app target it goes in the 'Embedded Binaries' section and in app extension target it goes in the 'Linked Frameworks and Libraries' section.
@@ -117,7 +117,7 @@ Attached to the release you will find two framework bundles.
117
117
[IterableAPI registerToken:deviceToken];
118
118
}
119
119
```
120
-
See example in sample app delegate [here](./sample-apps/swift-sample-app/swift-sample-app/AppDelegate.swift).
120
+
See example in sample app delegate [here](https://github.com/Iterable/swift-sdk/blob/master/sample-apps/swift-sample-app/swift-sample-app/AppDelegate.swift).
121
121
122
122
Congratulations! You can now send remote push notifications to your device from Iterable! Please note that you can't send push notifications until you set the userId or email. Please see sample applications to see a reference implementation.
123
123
@@ -149,7 +149,7 @@ Congratulations! You can now send remote push notifications to your device from
149
149
150
150
Push notifications and action buttons may have `openUrl` actions attached to them. When a URL is specified, the SDK first calls `urlDelegate` specified in your `IterableConfig` object. You can use this delegate to handle `openUrl` actions the same way as you handle normal deep links. If the delegate is not set or if it returns `false` (the default), the SDK will open Safari with that URL. If you want to navigate to a UIViewController on receiving a deep link, you should do so in the `urlDelegate`.
151
151
152
-
In the code below, `DeepLinkHandler` is a custom handler which is reponsible for deep link navigation. You have to provide implementation for deep link navigation. Please see [sample application](./sample-apps/swift-sample-app/swift-sample-app.xcworkspace) for a reference implementation.
152
+
In the code below, `DeepLinkHandler` is a custom handler which is reponsible for deep link navigation. You have to provide implementation for deep link navigation. Please see [sample application](https://github.com/Iterable/swift-sdk/blob/master/sample-apps/swift-sample-app?raw=true) for a reference implementation.
153
153
154
154
Swift:
155
155
@@ -331,7 +331,7 @@ Also see our [push notification setup FAQs](http://support.iterable.com/hc/en-us
331
331
332
332
The MIT License
333
333
334
-
See [LICENSE](https://github.com/Iterable/swift-sdk/blob/master/LICENSE)
334
+
See [LICENSE](https://github.com/Iterable/swift-sdk/blob/master/LICENSE?raw=true)
0 commit comments