iOS - 在 AVPlayerViewController 之上添加控件
Posted
技术标签:
【中文标题】iOS - 在 AVPlayerViewController 之上添加控件【英文标题】:iOS - Adding controls on top of AVPlayerViewController 【发布时间】:2017-07-30 14:23:40 【问题描述】:我有一个 AVPlayerViewController 的子类,我想在它上面添加我的自定义控件。我成功地在 AVPlayerViewController 上添加了我的自定义控件。但是,这些控件仅在短时间内响应。几秒钟后,单击任何按钮都不会触发 touchUpInside 事件。
下面是我正在使用的代码:
class LSPlayerViewController : AVPlayerViewController
private var btnPlay : UIButton!
func addControls()
self.showsPlaybackControls = false
//PLAY BUTTON
let btnPlayRect = CGRect(x: 0, y: 0, width: 19, height: 25)
btnPlay = UIButton(frame: btnPlayRect)
btnPlay.center = self.view.center
btnPlay.setImage(#imageLiteral(resourceName: "PauseIcon"), for: .normal)
btnPlay.addTarget(self, action: #selector(self.playButtonTapped(sender:)), for: .touchUpInside)
btnPlay.alpha = 0
btnPlay.isUserInteractionEnabled = true
self.view.addSubview(btnPlay)
func playButtonTapped(sender: UIButton!)
if sender.isPlayIconOn == true
sender.setImage(#imageLiteral(resourceName: "PauseIcon"), for: .normal)
self.player?.play()
else
sender.setImage(#imageLiteral(resourceName: "PlayIcon"), for: .normal)
self.player?.pause()
【问题讨论】:
我在十秒钟内找到的this 有帮助吗? 我在发帖前也检查过了,但这并不能解决我的问题。我成功添加了控件,但是 touchUpInside 事件在短时间内没有触发。 【参考方案1】:我通过在 addSubview 函数旁边添加以下两行来解决这个问题:
self.addChildViewController(playerViewController)
playerView.addSubview(playerViewController.view)
playerViewController.didMove(toParentViewController: self)
【讨论】:
以上是关于iOS - 在 AVPlayerViewController 之上添加控件的主要内容,如果未能解决你的问题,请参考以下文章
iOS 纵横比约束在 iOS 7 上中断,适用于 iOS 8