Last active
December 27, 2018 04:53
-
-
Save nathantannar4/4d72ce1f105e9d62853be30e3cc79d84 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
import UIKit | |
protocol IView: AnyObject where Self: UIView { | |
func viewDidLoad() | |
func viewWillAppear(_ animated: Bool) | |
func viewDidAppear(_ animated: Bool) | |
func viewWillDisappear(_ animated: Bool) | |
func viewDidDisappear(_ animated: Bool) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment