tamizhachi_
tamizhachi_

Reputation: 75

Is it correct to suppress warnings if there is an alternative to it in Xcode

I have used AlertView in my project. Since it is deprecated now it shows warnings. If I suppress these warnings without clearing it (by using AlertController) will it affect my project later.

Upvotes: 0

Views: 57

Answers (1)

Enea Dume
Enea Dume

Reputation: 3232

no it won't affect your projcet for the moment, but since they are deprecated, AlertView in the future may be deleted by swift, and then you will have serious problems, so better change them while you are in time. :)

Upvotes: 1

Related Questions