菜鸟教程小白 发表于 2022-12-12 11:18:28

c# - iOS 模态弹出窗口开始透明但变为空白


                                            <p><p>使用 iOS 模拟器,我试图让模态显示在具有透明背景的父 Controller 上。我将 Controller 定义为:</p>

<pre><code>var controller = new DailyRewardController();

controller.ModalPresentationStyle = UIModalPresentationStyle.CurrentContext;
controller.View.BackgroundColor = UIColor.Clear;
controller.View.Opaque = true;

PresentViewController (controller, true, null);
</code></pre>

<p> Controller 最初显示为透明背景,但随着动画结束,屏幕现在是黑色的,如下面的屏幕截图所示。注意:忽略可怕的弹出窗口;它只是一个原型(prototype):-)</p>

<p> <img src="/image/WAqhx.png" alt="enter image description here"/> </p>

<p>这是动画结束后的样子;但是,随着动画的运行,它是透明的……知道为什么吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>presentviewcontroller 动画完成后 Root ViewController 消失了,这就是原因。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于c# - iOS 模态弹出窗口开始透明但变为空白,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25224365/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25224365/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c# - iOS 模态弹出窗口开始透明但变为空白