override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } // override func loadView() { super.loadView() print( object_getClass(self), "-->", #function ) } override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) print( object_getClass(self), "-->", #function ) } override func viewWillLayoutSubviews() { super.viewWillLayoutSubviews() print( object_getClass(self), "-->", #function ) } override func viewDidLayoutSubviews() { super.viewDidLayoutSubviews() print( object_getClass(self), "-->", #function ) } override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(animated) print( object_getClass(self), "-->", #function ) } override func viewWillDisappear(_ animated: Bool) { super.viewDidAppear(animated) print( object_getClass(self), "-->", #function ) } override func viewDidDisappear(_ animated: Bool) { super.viewDidAppear(animated) print( object_getClass(self), "-->", #function ) } // }