菜鸟教程小白 发表于 2022-12-13 08:49:18

ios - setPopoverContentSize 不起作用


                                            <p><p>我在一个 View 中有一个 <code>UIPopoverController</code>,下面的方法来更新它的 <code>CGSize</code>:</p>

<pre><code>-(void)updatePop:(CGSize)newSize
{
    NSLog(@&#34;New Size: %@&#34;, NSStringFromCGSize(newSize));   
    ;
    NSLog(@&#34;popoverContentSize: %@&#34;, NSStringFromCGSize(popoverSearch.popoverContentSize));
}
</code></pre>

<p>当方法运行时,控制台显示如下:</p>

<pre><code>New Size: {320, 640}
popoverContentSize: {320, 409}
</code></pre>

<p>有人知道为什么会这样吗?它特别发生在风景中......</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我遇到了类似的问题,因为我无法在设备旋转期间更改弹出框 Controller 的大小。我在 <a href="https://stackoverflow.com/questions/5874146/close-uipopover-on-rotation-with-a-fadeout-animation" rel="noreferrer noopener nofollow">answer to a similar question</a> 中找到了导致我的解决方案的信息。 .</p>

<p>因为我是从 Bar 按钮呈现弹出框,所以 UIKit 正在“尝试”通过在旋转期间调整弹出框的大小来提供帮助(因为在更改为不同的设备方向后按钮的位置可能会有所不同)。即使我确切地知道在每种情况下我希望弹出框的大小,它也不尊重我对 setPopoverContentSize 的调用。我的解决方案是关闭 willAnimateRotationToInterfaceOrientation 中的弹出框,然后在为 contentSizeForViewInPopover 和 popoverContentSize 设置适当的值后,在 didRotateFromInterfaceOrientation 中重新呈现相同的弹出框。 IHTH</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - setPopoverContentSize 不起作用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7105548/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7105548/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - setPopoverContentSize 不起作用