How to resolve warning about does not implement the 'UIActionSheetDelegate' protocol
Posted
by RAGOpoR
on Stack Overflow
See other posts from Stack Overflow
or by RAGOpoR
Published on 2010-06-17T04:18:24Z
Indexed on
2010/06/17
4:23 UTC
Read the original article
Hit count: 423
here is my .h code
@interface ROSettingViewController : UITableViewController
{
UISwitch *switchCtl;
UISwitch *switchCtl1;
NSArray *dataSourceArray;
}
@property (nonatomic, retain, readonly) UISwitch *switchCtl;
@property (nonatomic, retain, readonly) UISwitch *switchCtl1;
@property (nonatomic, retain) NSArray *dataSourceArray;
- (void)dialogOKCancelAction;
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex;
@end
/Users/ragopor/Desktop/Power Spot beta 2/code/Classes/ROSettingViewController.m:321: warning: class 'ROSettingViewController' does not implement the 'UIActionSheetDelegate' protocol
© Stack Overflow or respective owner