Created
February 7, 2018 05:30
-
-
Save HassanSE/e6c312220a2eb57a4f5f777f6b9f8cee to your computer and use it in GitHub Desktop.
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
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