Parag Bafna
Parag Bafna

Reputation: 22930

Is it wrong to use deprecated method in objective c

Today i compile my application with 10.7 SDK and i am getting warnings for deprecated methods.
Should i change all deprecated methods?
Is it wrong to use deprecated method in objective c?

Upvotes: 0

Views: 1164

Answers (1)

Justin Boo
Justin Boo

Reputation: 10198

Yes, You should change deprecated methods because they may go away in the future.

In computer software standards and documentation, the term deprecation is used to indicate discouragement of usage of a particular software feature, usually because it has been superseded by a newer/better version. The deprecated feature still works in the current version of the software, but it may raise error messages or warnings.

Wiki: about Deprecation.

Upvotes: 5

Related Questions