我正在使用 iOS YouTube 帮助程序库在表格 View 单元格中内嵌显示视频。每当 YTPlayerView 退出全屏模式时,我的 tableview 的内容偏移量就会稍微偏离。我怀疑它与隐藏状态栏的 YTPlayerView 或与偏移量有关的东西有关。有没有人经历过这个?我想尝试在 YTPlayerView 退出全屏时手动设置内容偏移量,但我不知道如何观察这一点。我的 tableview Controller 上的 ViewWillAppear 没有被调用,我尝试的 NSNotifications 没有工作。 YTPlayerView 上似乎也没有为此的委托(delegate)方法。
Best Answer-推荐答案 strong>
这对我有用
UIWindowDidBecomeVisibleNotification
UIWindowDidBecomeHiddenNotification
在你的 View Controller 中
[[NSNotificationCenter defaultCenter] addObserver:self selectorselector(enteredFullScreen name:UIWindowDidBecomeVisibleNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selectorselector(exitedFullScreen name:UIWindowDidBecomeHiddenNotification object:nil];
你试过了吗?
关于ios - 观察在线和全屏模式之间的变化,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/28357824/
|