I have a UIWebView
in a UIViewController
. I am trying to push this view controller to an existing UINavigationController
, that has ano
Under a low memory condition under iOS 5.x or earlier, a view controller's view may be unloaded. Then when it needs to be loaded again, the view controller's viewDidLoad
will be called after the view is put back in place. Make sure you are doing the right things in viewDidLoad
and viewDidUnload
to handle this case.