I’m programmatically switching TabBarController views from a modal view controller (see this question). The delegate correctly switches the tabs, but viewDidAppear isn’t getting called in the newly presented tab. Is there any way to force viewDidAppear to get called? Or am I doing something wrong?
I’m programmatically switching TabBarController views from a modal view controller (see this question ).
Share
Finally got this figured out – it was because I was calling the tab switch before dismissing the modal view. Once I switched the order, it worked fine.