-6

I made an app. Now I want to close an other app (not mine) - does anybody here know how that is going to work?

I don't want to publish the App in the App Store - so it is only for private purposes but I dont want to jailbreak my iPhone.

coder1100
  • 27
  • 5

2 Answers2

2

For security reason an app cannot control another one.

You cannot do it.

meda
  • 45,103
  • 14
  • 92
  • 122
0

It's not possible - your app is contained within its own sandbox separate from other apps on the device.

For more information, you can read Secutiy Overview: Code Security in the iOS Developer Library.

esqew
  • 42,425
  • 27
  • 92
  • 132
  • Yes I know but I want to use the app only for me and dont publish it in the App Store – coder1100 Jul 23 '14 at 18:53
  • Unless you're jailbroken (which you haven't specified in your question), there is no way to do this from a standard application - even if it's not going to be submitted to the App Store. You can accomplish this if your device is jailbroken and your application (i.e., a jailbreak tweak) runs as root using [methods described here](http://stackoverflow.com/a/15777292/269970). – esqew Jul 23 '14 at 18:54