Question

Developing a Kiosk Type of the Application for iPad.

So Application flow is like i have one WebApp which runs like Kiosk(i.e it is full screen app) and now i have one Button which Call my Native App 'CameraApp', takes an photo and upload to web.

NOW, wanted to return back to same Kiosk App or Open another URL in Kiosk already running in Background(this is either inactive or background running App).

I want to start that App in stack from the Current Stack in IOS. Is it Possible, How to Achieve it?

Background is a WebApp(Kiosk Mode) which invokes native App, now i want to jump back to the Old App. Tell me any workaround of achieving the same.

Help me out in Same. THanks!!

Was it helpful?

Solution

Is your WebApp being delivered in an iOS app or just in Safari on the iPad?

If it is an app then you can register a custom URL scheme for it and then invoke that from the camera app.

If it is just Safari then you can just launch the http: URL and return that way.

If you are using a custom URL scheme to launch your camera app you can even use that to pass information on the URL that it should return to.

Either way, the URLs can be actioned with [[UIApplication sharedApplication] openURL:url];

According to this answer you can't control the full-screen presentation from the client side - your web site needs to use the appropriate meta tag - see "Hiding Safari User Interface Components"

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top