Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created November 6, 2018 18:16
Show Gist options
  • Save vialyx/96b2ae396342cbb046a5c58994b1ef98 to your computer and use it in GitHub Desktop.
Save vialyx/96b2ae396342cbb046a5c58994b1ef98 to your computer and use it in GitHub Desktop.
import UIKit
final class ViewController: UIViewController {
@IBOutlet weak var field: UITextField!
@IBOutlet weak var label: UILabel!
@IBOutlet weak var button: UIButton!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
// MARK: - Actions
@IBAction func buttonDidTap(_ sender: Any) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment