efimovdk
efimovdk

Reputation: 368

Why does UIAlertView work in iOS 8 if it's deprecated?

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

Answers (1)

user996142
user996142

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

Related Questions