How to hide my application from home screen [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 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.

Related

iOS app is not visible as a result in Google Search [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
2 months ago I uploaded an iOS app to the App Store. Right now it is visible on the App Store and in iTunes, but while searching my iOS app in Google search it is not showing my app link. But if I search any other iOS apps in Google search it is showing. Do I need to add any code to my app to get it to show?
No, you do not need to add any code to your app for this to show up. The main reason your app isn't showing up is probably because it hasn't had enough views on its own to provide a search result. No matter what adding code would not help because you aren't the owner of the iOS App Store domain, therefore meaning that you cannot make changes to its code.

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.

Close another iOS app through a button [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
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.

How to advertise my other iphone apps within ios application? [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 9 years ago.
Improve this question
I am developing an iPhone application. In this app, I want to advertise my other iPhone apps that are live in the App Store. I want to show the pop up for my other apps randomly and whenever the user clicks on them. Then, we can redirect to download that application from iTunes.
Any Ideas? Thanks in advance..
There are many ways in which you can advertise other apps. One would be to open a modal viewController on every Xth app launch where you randomly show one of the apps. In order to redirect the user to the app, use the following code snippet:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:#"itms://itunes.com/apps/APPNAME"]];

Is it possible to inject custom settings into my iOS application "Notifications" settings dialog? [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 9 years ago.
Improve this question
I cannot find any explanation on the internet how to inject my custom subscription settings into the Notifications settings dialog. For example iPhoto has an extra setting "Show Photos Stream Alerts From". Is it some hardcoded stuff from Apple that I cannot do in my App?
The specialized Notifications settings for iPhoto are specific for that app. As you guessed, it's coded by Apple. iPhoto is an included (default) app, and you cannot do the same thing in your own app.
You will have to put your app settings in the Settings app (settings bundle) or in the app itself.

Resources