I have a tab bar application and i am encountering a strange behaviour….when i toggle the tab bar and reaches into new view controllers sometimes the viewDidLoad of these view controllers are getting called…though viewDidLoad should get called only first time…
can anyone tell…any suggestion??
I have a tab bar application and i am encountering a strange behaviour….when i
Share
If there’s a low memory warning then a tab bar controller will release all views that are not visible. This means that you can get viewDidLoad called more than once because the view has been unloaded.