Skip to content

Instantly share code, notes, and snippets.

@nathantannar4
Last active December 27, 2018 04:53
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 nathantannar4/4d72ce1f105e9d62853be30e3cc79d84 to your computer and use it in GitHub Desktop.
Save nathantannar4/4d72ce1f105e9d62853be30e3cc79d84 to your computer and use it in GitHub Desktop.
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