当我的应用程序处于横向视图时,我希望将 UIPickerView / UIDatePickerView 的高度调整为 162。有没有一种简单的方法可以在代码中的自动布局中做到这一点?
我目前正在尝试以下处理调整大小的方法:
- (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
duration:(NSTimeInterval)duration
{
NSInteger height = 216;
if (UIInterfaceOrientationIsLandscape(toInterfaceOrientation)) {
height = 162;
}
datePicker.bounds =
CGRectMake(datePicker.frame.origin.x, datePicker.frame.origin.x,
datePicker.frame.size.width, height);
}
但是当这段代码在横向执行时,我得到了以下效果,其中选择器不再绑定到屏幕的左下角(这是出现在它下面的白色边距):
有没有办法或自动布局来处理 UIPickerViews 的这种调整大小,或者我应该在我的视图控制器中的一个视图旋转方法中使用边界矩形?