[7장] date Picker 관련입니다.
7장에 DatePicker를 사용해서 결과를 출력해 보시면, AlertView에서 피커에서 선택된 값과 다른 시간이 나오는 것을 보실 수 있습니다.
viewDidLoad에 파란색으로 된 사항을 추가해 주시면 정상적으로 화면에 출력되는 것을 보실 수 있습니다.
================================================================
- (void)viewDidLoad
{
// viewDidLoad를 오버라이드 한다.
NSDate *now = [[NSDate alloc] init];
[datePicker setDate:now animated:NO];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
[dateFormatter setDateStyle:NSDateFormatterLongStyle];
[dateFormatter setTimeStyle:NSDateFormatterLongStyle];
NSDate *selected = [datePicker date];
NSString *dateString = [dateFormatter stringFromDate:selected];
NSString *message = [[NSString alloc] initWithFormat:@"The date and time you selected is %@", dateString];
NSLog(@"%@",message);
[now release];
// [super viewDidLoad];
// Do any additional setup after loading the view from its nib.
}
======================================================