Sometimes I have a interface that implements several protocols and I'll get a warning from XCode that my implementation is incomplete.
Is there an easy way to determine which methods are "required" but but implemented (without having to put in dummy implementations of all the non-optional methods from the protocol header files)?
For example, I have a warning on this interface but I don't want to have to dig through all the protocols.. obviously XCode knows that some are missing, why can't it just tell which they are!
@interface KTThumbsViewController : UIViewController <KTThumbsViewDataSource, UIImagePickerControllerDelegate, UINavigationControllerDelegate, UIAlertViewDelegate>
XCode 4



Method Declared HereIf you click on that. it will show you the method declaration. – Volure DarkAngel Aug 24 '12 at 23:12