why UIDatePicker Not Animated?
NSDate *today = [NSDate date];
[datePicker setDate:to开发者_如何学Goday animated:YES];
When i use This , i have no animating!! Thanks
Setting the date in viewDidLoad:
sets the date before the date picker appears onscreen. Wait until viewDidAppear:
before setting it.
精彩评论