Created
November 6, 2018 18:16
-
-
Save vialyx/96b2ae396342cbb046a5c58994b1ef98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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