Versions Compared

Key

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

...

Code Block
languageswift
class MainViewController: UiViewControlelrUiViewController {
      ...
      override func viewDidLoad() {
        super.viewDidLoad()
        ...
          // Set up an action on uiButton to display loaded interstitial with it's interstitialId. 
          uiButton.addAction(UIAction(handler: {_ in
            createInterstitial()
          }), for: .touchUpInside)
        }
      ...
    }

...