问题
In my iOS app, I have a UITabBarController
, and its viewControllers
list looks like [vc1, vc2]
, which are of class MyVC1
and MyVC2
respectively, both of which subclass UIViewController
. MyVC1
overrides viewWillAppear
, and the overwritten version prints something so I know when it is called. (This is to isolate a larger problem I had, which was a view not appearing.)
My issue is that when the app first starts up and vc1
is the selected tab, nothing is printed, meaning its viewWillAppear
is not being called. If I switch tabs and then go back to vc1
, something does get printed, so vc1
's viewWillAppear
is not being called until I switch back to it from another tab.
Is there any way to have vc1
call viewWillAppear
as soon as the app starts up, without needing to switch tabs? Honestly, I'm surprised this wasn't the default behavior already.
回答1:
I just made a new test app in Xcode with nothing but a UITabViewController (and its two child view controllers) in Main.storyboard, and when I override viewWillAppear for the first child, my "view will appear" log prints every time (including on app launch).
Here are a couple things that could cause viewWillAppear to not be called:
- Not calling super somewhere you've overridden viewWillAppear
- Adding a view controller's view somewhere as a subview without adding the view controller as a child view controller
You also might try seeing if viewWillAppear is getting called for your UITabBarController, and if not, is it being called for its parent or presenting view controller? And so on until you find where the holdup is.
回答2:
Use the following line in viewWillAppear method of your vc1:
[super viewWillAppear:animated];
Next, the UITabBarController must be your initial controller.
回答3:
if you have Custom UITabBarController, check override func viewWillAppear is call super
in Custom UITabBarController
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated) // this line need
}
回答4:
make shure in the UITabBarController in the viewwillapear have the super.viewWillAppear(animated) like the following code
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
}
来源:https://stackoverflow.com/questions/39421430/viewwillappear-not-firing-for-uiviewcontroller-that-belongs-to-uitabbarcontrolle