Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

This appID is not the same as the Manifest App Id you used in previous steps

Register all UIViewController’s

Use R89SDK.shared.registerUIViewController() method and register each UIViewController instance in your app that represents a screen. This helps the R89SDK to track the user’s navigation and screen transitions in the app.

Code Block
languageswift
import UIKit
import R89SDK

class MainViewController: UIViewController {
    ...
    override func viewDidLoad() {
        super.viewDidLoad()
        ...
        R89SDK.shared.registerUIViewController(uiViewController: self)
    }
    ...
}

Tagged Wrappers

Expand
titleDetails for Tagged Wrapper

Tagged Wrappers

Include Page
iOS - Tagged Wrappers
iOS - Tagged Wrappers

...