Reputation: 629
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
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
Reputation: 801
if ([object respondsToSelector:@selector(methodName)])
{
// do something
}
Upvotes: 0