可能重复:
UIDatePicker in count down timer mode not supporting resizing?
我在倒数计时器模式下有一个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);
}
}
我错过了什么才能允许调整大小?