Close another iOS app through a button [closed] - ios

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
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.

For security reason an app cannot control another one.
You cannot do it.

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.

Related

How to hide my application from home screen [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I have developed iOS application which support custom scheme.
I don't want end user launch my app from app button in home screen.
The app must be launched by link with custom scheme.
How can I hide my application from home screen.
Thank you very much
You are not allow to do that on iOS because of security purposes. On iOS 14, users can move apps to the App Library, but it must done by the app user. On developer side you can't do this.

Users can't even open app and app won't let user delete it [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
Recently, We received more iOS App Store reviews about that Users can't even open app and app won't let user delete it, This is strange, where there is a problem?
If you want to understand why your app crashes, you have to include some kind of crash Analytics code. (Crashlytics and Google Analytics have these feature.) On top of these, you can also check iTunesconnect for more information.
App not opening is an issue in your startup code. Check your code in these functions.
application:willFinishLaunchingWithOptions:
App not allowing to delete, is not possible on iOS. There is no public API that lets you interfere with App deletion. So it might not be your code issue.

How to handle events when application gets killed in IOS? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
Is there any way to handle the ios application when it is killed or any way to open my app programatically in ios 9.
No.
When your app is killed, that is equivalent to being force quit. There is no signal or notification.
There is no way to cause the system to open your app automatically because that would be a security risk as well as being really annoying to the user.
You can use push notifications and/or extensions to make your app's presence known more to the user.

How to convert website in to iOS mobile app? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
We have already build a website. Is there any way to convert that website into mobile iOS app and make sure that it follows the iOS standards?
It is technically possible (easy, even) but Apple's guidelines specifically say that apps that are just repackaging of a website will be rejected, so no, your approach is a non-starter.
This can be doable using cordova as a wrapper application. But this application will be rejected by Apple. We faced same issue couple of months back, this kind of app accepted in google play but not in apple app store.

How to cancel support for ipad, and then upload the App [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
If canceled up support for the ipad, iTunesConnect will reject this app, because this app before support for ipad.
steps to reproduce:
TARGETS - General - Deployment Info - Devices,The "universal" change "iphone",Then upload app
Error Screenshot:http://i.stack.imgur.com/na8sX.png
The error message is pretty clear: Apple does not allow you to remove iPad support from an app that previously had it.
You need to release your new iPhone-only version as a separate app.

Resources