If I override the UIViewController's func viewSafeAreaInsetsDidChange do I need to call super?
override func viewSafeAreaInsetsDidChange() {
super.viewSafeAreaInsetsDidChange()
// do my stuff
}
I know that if you override func viewWillAppear(_ animated: Bool) and you are not calling the super inside, your app might behave erratically. Apple in fact says that you must call super at some point. I guess that is not the case here, and that's what I wanted to confirm!