Try it,
ViewController.h
@interface ViewController : UIViewController { IBOutlet UISwitch *onOffSwitch; UIDatePicker *myPicker; } -(IBAction)onOffSwitch:(id)sender; @end
ViewController.m
- (void)viewDidLoad { [super viewDidLoad]; CGRect pickerFrame = CGRectMake(0,250,0,0); myPicker = [[UIDatePicker alloc] initWithFrame:pickerFrame]; [self.view addSubview:myPicker]; [myPicker release]; } -(IBAction)onOffSwitch:(id)sender{ if(onOffSwitch.on) { NSString *dateStr = @"Tue, 25 May 2010 12:53:58 +0000";
source share