How to advertise my other iphone apps within ios application? [closed] - ios

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"]];

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.

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.

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.

Sharing information in 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 8 years ago.
Improve this question
I am currently working on a new app, and I'm trying to figure out how I can implement the next thing on iPhone programming.
IPhone A writes a list of names in the application
IPhone B is notified and came to the application and see the list of names
My question is: how I share things between iPhones. A server that connects with the iPhone or what? And how it need to work.
Send data from IPhone A to server, then server send push notification to iPhone B, user start app on iphone B and download new data. If app running on iPhone B you should observer push notificating and don't forget to download new data...

Background GPS in iOS mobile safari [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 know it is possible to have an iOS app running in the background which transmits GPS data periodically.
I was wondering if the same is possible if a user is on a webpage in mobile safari. Can watchPosition be used even if the user is not actively on the webpage but the tab is open in mobile safari (i.e. in the background)?
Yes, it is possible, but you app would have to be running in the background for it to work. You would use the same Location Awareness API that Apple provides and run it in the background, so that even when your app closes, it is still running.
You can see the answer given for this question for this question.
By using the instructions laid out by Apple, you can achieve this, but your app has to be run for it to work. So if they never start your app, no location tracking.

Resources