iphone SDK: How to implement a modal date picker?

iphone

Solution

Use a delegate!

Header:

@class DatePickerController;
@protocol DatePickerControllerDelegate
- (void) datePickerController:(DatePickerController *)controller didPickDate:(NSDate *)date;
@end

@interface DatePickerController : UIViewController {
  UIDatePicker *datePicker;
  NSObject <DatePickerControllerDelegate> *delegate;
}

@property (nonatomic, retain) UIDatePicker *datePicker;
@property (nonatomic, assign) NSObject <DatePickerControllerDelegate> *delegate;
@end

class:

@implementation DatePickerController
- (void) loadView {
  self.view = [[[UIView alloc] init] autorelease];
  self.datePicker = [[[UIDatePicker alloc] init] autorelease];
  [self.view addSubview:self.datePicker];
  UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
  [button setTitle:@"Done" forState:UIControlStateNormal];
  button.center = CGPointMake(160,240);
  [button addTarget:self action:@selector(done) forControlEvents:(UIControlEventTouchUpInside)];
  [self.view addSubview:button];
}

- (void) done {
  [delegate datePickerController:self didPickDate:datePicker.date];
}

- (void) dealloc {
  [datePicker release];
  [super dealloc];
}

@end

All that crap in loadView can be replaced with a NIB if you prefer. Just make sure to declare datePicker as an IBOutlet. And when you want to actually use it:

- (void) pickDate {
  DatePickerController *screen = [[[DatePickerController alloc] init] autorelease];
  screen.delegate = self;
  [self presentModalViewController:screen animated:YES];
}

- (void) datePickerController:(DatePickerController *)controller didPickDate:(NSDate *)date {
  [self doSomethingWithDate:date];
  [controller dismissModalViewControllerAnimated:YES];
}

Problem

How can I implement a modal date picker? What I want to happen is when the user enters a text field, a new view is created that has the date picker on it. From there, the user can interact and select a date. When the view is closed it should somehow return the date to it's caller. Is this possible? BTW, I cannot put the date picker on my main form because of space. Thanks in advance.

Original source

Related problems