diff --git a/ios/ui/main.storyboard.swift b/ios/ui/main.storyboard.swift index 8b137891..951cb7f5 100644 --- a/ios/ui/main.storyboard.swift +++ b/ios/ui/main.storyboard.swift @@ -1 +1,16 @@ +import UIKit + +class MainViewController: UIViewController { + @IBOutlet weak var titleLabel: UILabel! + @IBOutlet weak var button: UIButton! + + override func viewDidLoad() { + super.viewDidLoad() + // Do any additional setup after loading the view. + } + + @IBAction func buttonTapped(_ sender: UIButton) { + titleLabel.text = "Button Tapped!" + } +}