ios - subview 不调整设备旋转
<p><p>我正在向我的 View 添加一个 subview 。一切正常。我的应用程序支持自动旋转。
当我旋转我的设备时,我的父 Viewshouldautorotate/willanimate 被调用,但 subviewshouldautorotate/willanimate 没有被调用。因此,我无法设置 subview 的 UI 组件的位置。</p>
<pre><code>viewController = [ initWithNibName:@"abcController" bundle:nil];
;
</code></pre>
<p>任何指针都会有所帮助。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>这是因为您无法将一个 ViewController 的 View 从功能上添加到另一个 ViewController 的 View 树中,并期望第二个 ViewController 获取消息。</p>
<p>你需要</p>
<ol>
<li>让您添加的 View 成为您的第一个 <code>UIViewController</code> 的一部分(而不是第二个 <code>UIViewController</code>)</li>
<li>使用 <code>addChildViewController</code> 方法将第二个 ViewController 添加为第一个 ViewController 的子级(这将允许转发这些消息)。</li>
</ol></p>
<p style="font-size: 20px;">关于ios -subview 不调整设备旋转,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/14217104/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/14217104/
</a>
</p>
页:
[1]