- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)orientation duration:(NSTimeInterval)duration {
CGRect apprect;
apprect.origin = CGPointMake(0.0f, 0.0f);
if ((orientation == UIInterfaceOrientationLandscapeLeft) || (orientation == UIInterfaceOrientationLandscapeRight))
apprect.size = CGSizeMake(480.0f, 300.0f);
else
apprect.size = CGSizeMake(320.0f, 460.0f);
// 设置当前控制器所有的sunView的位置
float offset = 32.0f;
for (UIView *subview in [self.view subviews])
{
CGRect frame = CGRectInset(apprect, offset, offset);
[subview setFrame:frame];
offset += 32.0f;
}
}
本文探讨了在iOS应用中实现视图布局与旋转适应的技术细节,通过自定义旋转时视图位置调整的方法,确保应用在不同方向旋转时保持良好的用户体验。
4535

被折叠的 条评论
为什么被折叠?



