Reputation: 368
I am currently running iOS 8.1.4 and I use UIAlertView in my code without any problems. But the documentation says that it is not available for iOS 8. What am I missing then?
Upvotes: 0
Views: 76
Reputation: 2883
Deprecated does not mean "not available". It means "outdated, should not be used for new projects and may be removed from future versions". Ideally, you deprecate something in version N of your framework and remove it completely in version N+3, so everyone has change to upgrade code.
Upvotes: 1