Reputation: 753
If a user was using my app on iOS 8 and my latest release supports iOS 9 only. The user update OS to iOS9.
Upvotes: 6
Views: 1491
Reputation: 38209
UIAlertView
was deprecated and old application had new bug where UIAlertView
was not respecting application orientation. I had to do a tricky code which detected if UIAlertController
(I prefer this approach instead detecting iOS version) is available than use it and if not than fallback to UIAlertView
was used.During application update the biggest problem you can create is setting compatibility or database comp compatibility. So you should be careful with that.
Upvotes: 1