我有一个UIDatePicker
倒计时模式。UIDatePicker
默认不支持自动调整大小。所以我手动将框架设置为横向调整大小
- (void) resizeDatePicker: (UIInterfaceOrientation)orientation
{
if (UIInterfaceOrientationIsPortrait(orientation))
{
self.timePicker.frame = CGRectMake(0, 44, 320, 216);
}
else
{
self.timePicker.frame = CGRectMake(0, 44, 480, 162);
}
}
它可以在除倒数计时器之外的所有其他模式下工作。在倒计时模式下,它没有清楚地显示。