Using the iOS Trust SDK

This guide is written for developers who want to use the Trust SDK to add local (on-device) Onboarding capabilities to an iOS application.

The sample application for the Trust SDK is recommended as a starting point for learning how to integrate the SDK with your own code.

The developer needs a thorough knowledge of the Swift and/or Objective-C programming language on the iOS platform. It is also recommended that the developer has some understanding of TrustX technology.

The minimum supported iOS version is 14.3.

Add the Trust SDK to your Project

Copy the following xcframework files to your project folder and reference it in project general settings, frameworks and libraries

Swift
Copy

Import the Library

Swift
Objective-C
Copy

Initializing the Trust SDK

  1. The SDK provides simple and straightforward initialization mechanism:
Swift
Objective-C
Copy
  1. Daon Trust SDK offers setting a DaonOptions object for customization purposes. You can set your own initialization timeout as well as the URL of the environment that you want to use:
Swift
Objective-C
Copy

If you do not set the DaonOptions object, default values will be used. Initialization timeout default value is 10. By not setting the custom environment URL, you are requesting of the Daon Trust SDK to launch a QR code scanning feature which expects the QR code that carries the URL of your environment as a value.

  1. Finally, you can start the Onboarding process by calling 'start()' function of the TrustSDK:
Swift
Objective-C
Copy

Obtaining and Parsing Events from the Trust SDK

In utilizing DaonEventDelegate, three delegate methods need to be called. Events that are returned are represented through the DaonEvent object instances that are carrying feedback information about the Onboarding process status and errors. The event delegate methods required are listed below.

Swift
Objective-C
Copy

DaonEvent fields:

DaonEvent fields are derived from an event code and description:

  1. DaonEventCode - A field that contains event code
  2. String description - A field that contains a description of the event

A list of events, their codes and descriptions that are supported and provided by the Daon Trust SDK can be found below:

Event NameCodeDescription
webSessionCompleted100403Web session for onboarding process completed successfully.
qrScanInvalidQRCode200103Scanned QR code is not valid.
qrScanInterrupted200104QR code scanning interrupted. Please try again.
webAppTerminated200402Web application process terminated. This can occur when the end-user presses the back button to navigate to a previous screen when they are on the first web screen of the Process Instance.
webAppTimeout200403Web application process has timed out.
cameraPermissionDenied200501Camera permission denied.
noInternetConnection200502Internet connection not available.
notSupportediOS200503Returned when current iOS version not supported.
versionNotCompatible200505Returned when DaonTrust SDK client version not compatible with server version.
urlNotWhitelisted200508Provided URL is not whitelisted.
webLoadingTimeout200509Web page failed to load in given time frame.
  • DaonEventCode structure breakdown:
    • The first pair of digits represents event status. Event status can be: Success (10), Fail (20), Info (30).
    • The second pair of digits represents section of the event. Event sections can be: QR (01), MRZ (02), NFC (03), Web (04), Other (05).
    • The third pair of digits represents ordinal code number for that section.
Type to search, ESC to discard
Type to search, ESC to discard
Type to search, ESC to discard