¡@

Home 

2014/10/15 ¤U¤È 10:03:29

iphone Programming Glossary: actiontaken

Warning while adding and using a new method in external library protocol

http://stackoverflow.com/questions/5771957/warning-while-adding-and-using-a-new-method-in-external-library-protocol

added method is not part of the protocol. This is my Class @protocol MyExtendedDelegate LibraryDelegate @optional void actionTaken @end @interface MyController UITableController MyExtendedDelegate @end And inside my controller I am registering self as.. alertView clickedButtonAtIndex NSInteger buttonIndex if self.libraryController.delegate respondsToSelector @selector actionTaken self.libraryController.delegate actionTaken Here is the warning I am getting actionTaken not found in protocol NSObject.. if self.libraryController.delegate respondsToSelector @selector actionTaken self.libraryController.delegate actionTaken Here is the warning I am getting actionTaken not found in protocol NSObject may not respond to actionTaken I want to get..