2

I have an on-air application and I block some old version (must to update).

I noticed that an old version (version I blocked) don't have "must upgrade" appear.

To solve that issue, in thought all the ways to launch my application:

  1. Tap the app icon
  2. Schemas (Url)
  3. Push notifications

Are there any other ways?

Mike Z
  • 4,121
  • 2
  • 31
  • 53
gran33
  • 12,421
  • 9
  • 48
  • 76

1 Answers1

1

From what you're asking - those are the only ways to launch an app from an iOS device. Just update the app to a new version and users will get notified in the App Store of the new update. I don;t see how you can prevent the current app from running -- unless you are using a web service in the current app that you could disable in some way, prevent the app from functioning. But that sounds like a horrible idea.

Robert J. Clegg
  • 7,231
  • 9
  • 47
  • 99
  • 1
    That doesn't sound like a horrible idea - for example, you might change your API and don't want to or even cannot support the old version anymore. I'd rather have the old version of the app tell me I have to update because of an API change than to just crash on me ... Of course, that's a bit tricky to do if you did not think of that possibility before bringing out the first version of your app ;-). – TheEye Nov 11 '13 at 20:48