Skip to content

Instantly share code, notes, and snippets.

@dive
Created January 20, 2019 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dive/caa5d0f8c3027aaff2dfeaa185bb9823 to your computer and use it in GitHub Desktop.
Save dive/caa5d0f8c3027aaff2dfeaa185bb9823 to your computer and use it in GitHub Desktop.
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