Created
February 25, 2019 12:24
-
-
Save dive/836d6f7bbbf65297f18d766a9504313a to your computer and use it in GitHub Desktop.
SPM:Article:UIViewController
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 | |
| import class ios_framework_package.FrameworkPackage | |
| class ViewController: UIViewController { | |
| override func viewDidLoad() { | |
| super.viewDidLoad() | |
| self.view.backgroundColor = FrameworkPackage().randomColor() | |
| } | |
| @IBAction func pressed(_ button: UIButton) { | |
| self.view.backgroundColor = FrameworkPackage().randomColor() | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment