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.

If you call:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://test.com"]];

it seems to automatically quit your app -- bypassing the dealloc, viewDidDisappear, or any other functions.

Is there a way to put any code between this call and the Safari (or Phone or Email) launch, without having to put a timer before every openURL call?

====

EDIT: I need to call something only if one particular view is closed -- whether it's closed "politely", or abruptly...

share|improve this question

2 Answers

up vote 3 down vote accepted

Have you tried putting something in the

- (void)applicationWillTerminate:(UIApplication *)application

method in your UIApplicationDelegate?

share|improve this answer
That's a good idea. I was hoping to have it hit when a specific view gets killed... – Jeffrey Berthiaume Mar 3 '10 at 20:03
Yup -- that worked. It's kind of a hack (for my app) but that's what I'll use if nobody has any other suggestions... – Jeffrey Berthiaume Mar 3 '10 at 20:11

Why not put up a "launching Safari" screen, do what you need to, and then call the openURL method when all the work you need to do is done?

That said, since a user can also just press the Home button at any time you should be saving data as you go anyway.

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.