开发者

Can i access background running apps on my app?

开发者 https://www.devze.com 2023-01-14 06:06 出处:网络
Is there a way i can access the apps running on the iphone and e开发者_如何学Cither cancel them?You can open URLs with special schemes assigned to other apps from your own app, and it\'ll cause those

Is there a way i can access the apps running on the iphone and e开发者_如何学Cither cancel them?


You can open URLs with special schemes assigned to other apps from your own app, and it'll cause those apps to open. For example if another app allowed you to call URLs like someapp://myurlhere, you could attempt to connect to that URL and that app will open instead of Mobile Safari.

You can't manipulate other processes from your own app though; Apple doesn't allow that. Your app is restricted to its own process and directory in the iOS file system. That means you can't kill other processes from your own code. (I'm guessing you technically can with jailbreaking, but I don't have experience with jailbreak stuff. Doing this means Apple won't let your app into the App Store.)

0

精彩评论

暂无评论...
验证码 换一张
取 消