0

New to IOS programming and was wondering if it is possible to develop an app which will stop other applications from running

for example : When my app is activated user will not be able to run twitter and facebook until my app is deactivated ?

Thanks

tguclu
  • 689
  • 3
  • 10
  • 25

1 Answers1

4

No you can't have access to interact with the other apps because of sandbox environment.

App Sandboxing

A sandbox is a set of fine-grained controls that limit the app's access to files, preferences, network resources, hardware, and so on. As part of the sandboxing process, the system installs each app in its own sandbox directory, which acts as the home for the app and its data.

https://developer.apple.com/app-sandboxing/

https://stackoverflow.com/a/35709745/8023444

Community
  • 1
  • 1
Nikhlesh Bagdiya
  • 4,316
  • 1
  • 19
  • 29