Ajit Satarkar
Ajit Satarkar

Reputation: 717

Prevent a user from exiting an app or accessing other apps in iOS programming

I am working on one enterprise iPad app where client ask for preventing user from exiting app and accessing other apps. After all try I found that this is possible through settings app of device with guidelines mentioned here .

I would like to know if somebody knows the alternative way for this or by programming if possible.

Note : We are not going to put this app on app store.

Upvotes: 1

Views: 279

Answers (2)

sschale
sschale

Reputation: 5188

Your app can't do such actions. However, since you are discussing an Enterprise App, have you considered Apple Configurator or other MDM solutions to block access to other apps?

As your link states, you can also use Guided Access and Parental Controls to disable notifications.

You can also require Airplane Mode be turned on and WiFi be disabled before whatever functionality you need is set, and if the user violates any such terms, then you disable your app until, for instance, a proctor gives a code to reactivate it.

Upvotes: 1

mkumar
mkumar

Reputation: 127

If App has to go to app store

Prevent app from exiting - not possible

Access other app - MDM approach can hide the App

Upvotes: 1

Related Questions