菜鸟教程小白 发表于 2022-12-12 15:52:34

iphone - iOS:viewDidLoad 中未正确设置 View 高度


                                            <p><p>我有一个从 nib 加载的 ViewController ,其中我定义了一个高度为 346 像素的 ScrollView 。但是,当我这样做时:</p>

<pre><code>int h = scrollView.frame.size.height;
NSLog(@&#34;%d&#34;,h);
</code></pre>

<p>在 viewDidLoad 中我得到 375。</p>

<p>我需要 viewDidLoad 中的适当高度(或其他类似方法),以便我可以根据高度以编程方式设置 ScrollView 的内容(不希望它垂直“溢出”,仅水平“溢出”,它的分页) .</p>

<p> ScrollView 打开了每一行自动调整大小。 (全是鲜红色)。奇怪的是,当 View 加载时,我可以看到 ScrollView 是(正确的)346 像素高而不是 375,因此它必须在 viewDidLoad 和显示 View 之间的某个位置更改为正确的值。</p>

<p>我在这里陷入了死胡同,任何获得适当大小的 View 的方法都会非常有帮助。在此先感谢您,如果您需要更多信息,请发表评论。</p>

<p>edit:我解决它的方法是在 viewDidLoad 中放置一个 0.1 秒的计时器,当调用该计时器时,我完成了我需要做的工作。不过这有点小题大做,因此我们将不胜感激任何其他建议。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>执行额外布局类型计算的正确位置一般在 <code>viewWillLayoutSubviews</code> 或 <code>viewDidLayoutSubviews</code> 中。 <a href="http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIViewController_Class/Reference/Reference.html#//apple_ref/occ/instm/UIViewController/viewWillLayoutSubviews" rel="noreferrer noopener nofollow">Docs here</a> .这也来自“处理 View 旋转”部分:</p>

<blockquote>
<p>The <code>viewWillLayoutSubviews</code> method is also called after the view is
resized and positioned by its parent. If a view controller is not
visible when an orientation change occurs, then the rotation methods
are never called. However, the <code>viewWillLayoutSubviews</code> method is called
when the view becomes visible.</p>
</blockquote></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - iOS:viewDidLoad 中未正确设置 View 高度,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/4839332/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/4839332/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - iOS:viewDidLoad 中未正确设置 View 高度