
This file contains 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 ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
print("viewDidLoad1") | |
} | |
override func viewWillAppear(_ animated: Bool) { | |
super.viewWillAppear(animated) | |
print("viewWillAppear1") | |
} | |
} | |
class ViewController2: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
print("viewDidLoad2") | |
} | |
override func viewWillAppear(_ animated: Bool) { | |
super.viewWillAppear(animated) | |
print("viewWillAppear2") | |
} | |
} | |
'IOS(Swift)' 카테고리의 다른 글
scrollview programmatically height (0) | 2021.06.15 |
---|---|
viewcontroller remove tabbar (0) | 2021.06.10 |
Swift image rotate (0) | 2021.06.09 |
Swift keyboard 가 textfield를 가릴 때 (0) | 2021.06.07 |
TableView CustomCell (0) | 2021.06.03 |