gpt4 book ai didi

ios - 观察内联和全屏模式之间的变化

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:41:24 26 4
gpt4 key购买 nike

我正在使用 iOS YouTube 帮助程序库在表格 View 单元格内显示视频。每当 YTPlayerView 退出全屏模式时,我的 tableview 的内容偏移量都会稍微偏离。我怀疑它与 YTPlayerView 隐藏状态栏或与偏移量混淆的东西有关。有没有人经历过这个?每当 YTPlayerView 退出全屏时,我都想尝试手动设置内容偏移量,但我对如何观察这一点感到困惑。我的 tableview Controller 上的 ViewWillAppear 没有被调用,我尝试的 NSNotifications 没有工作。 YTPlayerView 上似乎也没有用于此的委托(delegate)方法。

最佳答案

这对我有用

UIWindowDidBecomeVisibleNotificationUIWindowDidBecomeHiddenNotification

在你的 View Controller 中

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(enteredFullScreen:) name:UIWindowDidBecomeVisibleNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(exitedFullScreen:) name:UIWindowDidBecomeHiddenNotification object:nil];

你试过吗?

关于ios - 观察内联和全屏模式之间的变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28357824/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com