iphone – UIView – 中心对齐UIView的所有内容?

前端之家收集整理的这篇文章主要介绍了iphone – UIView – 中心对齐UIView的所有内容?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何居中对齐视图的所有内容.当我旋转iPad的内容不对齐中心时,它自己如何解决这个问题?

谢谢!!!

解决方法

提供didRotateFromInterfaceOrientation方法的实现并将所有子视图居中.

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
    for(UIView *subview in [self.view subviews]) {
        subview.center = self.view.center;
    }
}

猜你在找的Xcode相关文章