Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using UIWebView inside my iOS app and I'm displaying a web app I have added to the actual project. Inside shouldStartLoadWithRequest I'm handling clicks on links (local files I'm opening in the same UIWebView, and web links I'm opening in Safari).

Everything works fine, except for one particular web link. When the app opens Safari with that url, and when I close Safari and go back to the app, I'm being automatically redirected to Safari again, and the same web site is displayed.

Weird thing is, none of the View Lifecycle methods are being called, nor none of the UIWebViewDelegate methods. I have no idea how can I prevent this behavior.

Any thoughts?

share|improve this question

1 Answer

up vote 0 down vote accepted

Solved by registering for notification on ApplicationDidBecomeActive. I've put this

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didBecomeActive:) name:UIApplicationDidBecomeActiveNotification object:nil];

into (void)viewDidLoad method, and then wrote handler function that's being called via selector (didBecomeActive)

That's it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.