Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Update main.storyboard.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
22388o authored Oct 13, 2023
1 parent 4979a63 commit 6806bff
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions ios/ui/main.storyboard.swift
Original file line number Diff line number Diff line change
@@ -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!"
}
}

0 comments on commit 6806bff

Please sign in to comment.