Apple sometimes denounces methods in UIKit that you must override (for example, [UIViewController shouldAutorotateToInterfaceOrientation:] in iOS 6).
Unfortunately, once you change the deployment target to a version in which it is completely deprecated, there is no warning / error, even if the method is deprecated and will never be called ... ever.
If you call an obsolete method, you get a warning, but not if you override it.
I would like to find all of my obsolete methods that I override so that I can clear them over time.
Is there an easy way to do this?
Thanks, -Vince
source share