From 6806bff9637fc335d83ec04da59be087fdce1754 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?22388o=E2=9A=A1=EF=B8=8F?= <83122757+22388o@users.noreply.github.com> Date: Fri, 13 Oct 2023 11:32:13 -0300 Subject: [PATCH] Update main.storyboard.swift --- ios/ui/main.storyboard.swift | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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!" + } +}