Skip to content

Instantly share code, notes, and snippets.

@HassanSE
Created February 7, 2018 05:30
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 HassanSE/e6c312220a2eb57a4f5f777f6b9f8cee to your computer and use it in GitHub Desktop.
Save HassanSE/e6c312220a2eb57a4f5f777f6b9f8cee to your computer and use it in GitHub Desktop.
class <#ViewControllerName#>: UIViewController {
// MARK: - Outlets
// MARK: - Properties
// MARK: - View Life Cycle
override func viewDidLoad() {
super.viewDidLoad()
setupUI()
}
}
// MARK: - Instance Methods
extension <#ViewControllerName#> {
func setupUI() {
// Setup your UI here
}
}
// MARK: - Actions
extension <#ViewControllerName#> {
// Define all your IBActions here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment