Skip to content

Instantly share code, notes, and snippets.

@farhan-syed
Created September 22, 2017 22:50
Show Gist options
  • Save farhan-syed/e5ac606a573dab928ad5c723018d36ea to your computer and use it in GitHub Desktop.
Save farhan-syed/e5ac606a573dab928ad5c723018d36ea to your computer and use it in GitHub Desktop.
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
view.backgroundColor = UIColor.white
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
override func loadView() {
self.view = ProfileSettingsView()
}
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment