Skip to content

Instantly share code, notes, and snippets.

@dive
Created February 25, 2019 12:24
Show Gist options
  • Select an option

  • Save dive/836d6f7bbbf65297f18d766a9504313a to your computer and use it in GitHub Desktop.

Select an option

Save dive/836d6f7bbbf65297f18d766a9504313a to your computer and use it in GitHub Desktop.
SPM:Article:UIViewController
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