I am using the Exploring Iphone SDK by Dave and Jeff.
So far I am able to pick up everythin. But yesturday I came across a chapter which uses delegates like this...
interface Control_FunViewController : UIViewController <UIActionSheetDelegate> {
IBOutlet UITextField *nameField;
IBOutlet UITextField *numberField;
IBOutlet UILabel *sliderLabel;
IBOutlet UISwitch *leftSwitch;
IBOutlet UISwitch *rightSwitch;
IBOutlet UIView *switchView;
IBOutlet UIButton *doSomethingButton;
}
Where can read to know more about why <UIActionSheetDelegate> is used. I mean I want to learn more about delegates in cocoa touch frame work. Any good link for this...??
Thanks
So far I am able to pick up everythin. But yesturday I came across a chapter which uses delegates like this...
interface Control_FunViewController : UIViewController <UIActionSheetDelegate> {
IBOutlet UITextField *nameField;
IBOutlet UITextField *numberField;
IBOutlet UILabel *sliderLabel;
IBOutlet UISwitch *leftSwitch;
IBOutlet UISwitch *rightSwitch;
IBOutlet UIView *switchView;
IBOutlet UIButton *doSomethingButton;
}
Where can read to know more about why <UIActionSheetDelegate> is used. I mean I want to learn more about delegates in cocoa touch frame work. Any good link for this...??
Thanks