更改方向时正确查看绘图,但在第一次显示时失败
Posted
技术标签:
【中文标题】更改方向时正确查看绘图,但在第一次显示时失败【英文标题】:View drawing correctly when changing orientation, but fails on first display 【发布时间】:2016-01-19 07:46:03 【问题描述】:我在 ios 9 中有一个 UIViewController
,当视图以横向模式显示时,它无法正确绘制。
但是,如果视图以纵向模式显示,然后更改为横向,一切都很好。
这在模拟器和设备上都会发生。我正在使用 Interface Builder 设置子视图的高度和约束。我不会在代码中调整帧大小或更新约束。
所以我尝试强制重新绘制,类似于改变方向,但我无法让它工作,我不确定这是否是最好的方法。
有人知道如何解决这个问题吗?
【问题讨论】:
【参考方案1】:在您的 ViewControllers 中,您需要重写 shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) 方法以在应用旋转时返回 YES:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
return interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight;
【讨论】:
以上是关于更改方向时正确查看绘图,但在第一次显示时失败的主要内容,如果未能解决你的问题,请参考以下文章