Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

viewWillAppear not firing for UIViewController that belongs to UITabBarController until I switch tabs

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.

like image 729
BallpointBen Avatar asked Sep 10 '16 00:09

BallpointBen


1 Answers

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:

  1. Not calling super somewhere you've overridden viewWillAppear
  2. 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.

like image 178
charmingToad Avatar answered Oct 03 '22 23:10

charmingToad