ios – Autolayout和设备定位

前端之家收集整理的这篇文章主要介绍了ios – Autolayout和设备定位前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发一个支持纵向和横向模式的应用程序.我正在使用自动布局来安排我的观点.因为我一直在阅读很多帖子,并且我已经意识到开发人员通常使用以下方法之一.

1.第一种方法

实现UIViewController:updateConstraints方法并根据设备方向更新约束.

2.第二种方法

实现UIViewController:viewWillLayoutSubviews方法并根据设备方向更新约束.

谁能告诉我最好的使用方法是什么?我一直在寻找一种结合自动旋转和自动布局的最佳实践.谢谢.

解决方法

我会使用这个UIViewController的方法

– (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration;

在旋转时调用,并从那里调用-setNeedsUpdateConstraints.
如果您需要进行额外的计算或管理违规行为

- (void)updateViewConstraints
{
    [super updateViewConstraints];
    // do calculations if needed,like set constants
}
原文链接:https://www.f2er.com/iOS/332447.html

猜你在找的iOS相关文章