Rajashekar
Rajashekar

Reputation: 629

Deprecated methods in iOS

How can I check all the methods that were deprecated since iOS 4.3? Is there a website, that shows or filters all the methods that are deprecated in a give particular iOS?

Upvotes: 0

Views: 166

Answers (2)

Anoop Vaidya
Anoop Vaidya

Reputation: 46543

The best place is to check in Apple Class Reference. Ex. for NSString.

This will be updated by them after every modification, and will be almost accurate and uptodate as compared to all other website, which in turn will get the information from here only.

Upvotes: 1

Liolik
Liolik

Reputation: 801

if ([object respondsToSelector:@selector(methodName)])
{
    // do something
}

Upvotes: 0

Related Questions