Skip to content

Commit c455e69

Browse files
Delete extra newlines.
1 parent 39f32ac commit c455e69

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ Attached to the release you will find two framework bundles.
7979
[IterableAPI initializeWithApiKey:@"<your-api-key>" launchOptions:launchOptions config:config]
8080
```
8181

82-
8382
See the Iterable guide on how to setup your Iterable push integration and obtain push integration name [here](https://support.iterable.com/hc/en-us/articles/115000315806-Setting-Up-iOS-Push-Notifications).
8483

8584
2. ##### Set userId or email.
@@ -107,7 +106,7 @@ Attached to the release you will find two framework bundles.
107106

108107
```swift
109108
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
110-
IterableAPI.register(token: deviceToken)
109+
IterableAPI.register(token: deviceToken)
111110
}
112111
```
113112

@@ -118,7 +117,7 @@ Attached to the release you will find two framework bundles.
118117
[IterableAPI registerToken:deviceToken];
119118
}
120119
```
121-
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](./sample-apps/swift-sample-app/swift-sample-app/AppDelegate.swift).
122121

123122
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.
124123

@@ -191,7 +190,6 @@ Congratulations! You can now send remote push notifications to your device from
191190
}
192191
```
193192
194-
195193
* Handling Email Links
196194
197195
For Universal Links to work with link rewriting in emails, you need to set up apple-app-site-association file in the Iterable project. More instructions here: [Setting up iOS Universal Links](https://support.iterable.com/hc/en-us/articles/115000440206-Setting-up-iOS-Universal-Links).
@@ -209,8 +207,6 @@ Congratulations! You can now send remote push notifications to your device from
209207
// This will track the click, retrieve the original URL and call `handleIterableURL:context:` with the original URL
210208
return IterableAPI.handle(universalLink: url)
211209
}
212-
213-
214210
```
215211

216212
Objective-C:

0 commit comments

Comments
 (0)