We don’t want the user enter our app if the app is out-dated.
Is that is possible to quit a iOS app when we do some date check BEFORE the app launch?
Or it is possible to quit the application after the main view is loaded?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Before the app launches: no. The launch animation is already in progress when the OS calls
main.After some time (1-2 sec): yes. You can use one of
so many ways, but neither will go through AppStpre – you’re not supposed to close your app programmatically. You’re supposed to notify the user via an UIAlertView about the outdated app and disable interaction with the app.