Refer to the public documentation to install the SDKs and to initialize your ReachFive client.
The basics are:
-
Add this SDK to your project in your Cocoapods Podfile:
pod 'IdentitySdkCore'
-
Configure the SDK:
let reachfive: ReachFive = ReachFive(sdkConfig: SdkConfig(domain: "DOMAIN", clientId: "CLIENT_ID"))
-
Initialize the SDK using this method (makes a network call) to be called inside the corresponding method of
UIApplicationDelegate
reachfive.application(application, didFinishLaunchingWithOptions: launchOptions)
In addition to the libraries, we provide in the Sandbox
directory a simple iOS application which integrates the ReachFive SDKs.
To configure this demo application and learn how to use this SDK, refer to contributing
You'll find the documentation of the methods exposed on https://developer.reachfive.com/sdk-ios/index.html.
Please refer to changelog to see the descriptions of each release.
Please refer to contributing