菜鸟教程小白 发表于 2022-12-13 10:16:39

ios - 观察在线和全屏模式之间的变化


                                            <p><p>我正在使用 iOS YouTube 帮助程序库在表格 View 单元格中内嵌显示视频。每当 YTPlayerView 退出全屏模式时,我的 tableview 的内容偏移量就会稍微偏离。我怀疑它与隐藏状态栏的 YTPlayerView 或与偏移量有关的东西有关。有没有人经历过这个?我想尝试在 YTPlayerView 退出全屏时手动设置内容偏移量,但我不知道如何观察这一点。我的 tableviewController 上的 ViewWillAppear 没有被调用,我尝试的 NSNotifications 没有工作。 YTPlayerView 上似乎也没有为此的委托(delegate)方法。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这对我有用</p>

<p>UIWindowDidBecomeVisibleNotification
UIWindowDidBecomeHiddenNotification </p>

<p>在你的 ViewController 中</p>

<pre><code>[ addObserver:self selector:@selector(enteredFullScreen:) name:UIWindowDidBecomeVisibleNotification object:nil];
[ addObserver:self selector:@selector(exitedFullScreen:)name:UIWindowDidBecomeHiddenNotification object:nil];
</code></pre>

<p>你试过了吗?</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 观察在线和全屏模式之间的变化,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28357824/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28357824/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 观察在线和全屏模式之间的变化