hi i am new to iphone, what i done is place a button and in button click event i call a web browser it works fine. but i cant able to get back to my application screen.By pressing the menu button of iphone ie will quit directly how can i get back to my application. pls help me thank u.
A:
As far as I know, iphone OS is a single thread OS. once you are in a browser, you could not go back to your application.
Russel Yang
2010-08-14 06:43:53
It's not a single threaded OS, but it's true that you can only be running one application at once, except for a few built in exceptions (music can play in the background, Safari will stay running, etc). iPhone OS 4.0 allows multitasking, but only on some hardware.
icktoofay
2010-08-14 06:46:58
how can i come back to my application after completion of web browser
MaheshBabu
2010-08-14 06:52:55
A:
You can't. If you want this sort of functionality, you'll need to open the URL in a web view inside your app.
Owain Hunt
2010-08-14 21:56:05
+1
A:
You can have your app register a custom URL scheme yourapp:// which you can then embed as a link in your web page - clicking on it in MobileSafari would launch your app. based on the scheme URL construct you can send data back to your app via this URL scheme:
yourapp://sometokenorvaluetopassback
chilitechno.com
2010-08-15 03:57:19