iphone URL Scheme image upload app
I have developed an application to upload image captured from camera to server. I registered this app to URL Scheme so that i can access camera from web app.
I can able to launch the app from web app but do not know how to go back to th开发者_StackOverflowe web page from where i launched the app.
Please help me
What you need to do is send the URL of the webapp to your app via your app URL sheme:
myapp://callback=www.someurl.com
Then when your app is done just open the URL again.
精彩评论