离开 ViewController 时停止 AVCaptureSession
Posted
技术标签:
【中文标题】离开 ViewController 时停止 AVCaptureSession【英文标题】:Stop AVCaptureSession when leaving ViewController 【发布时间】:2016-05-23 15:22:17 【问题描述】:我有带有 AVCaptureSession 的 ViewController。我可以轻松启动和停止 AVCaptureSession :
var captureSession: AVCaptureSession?
captureSession = AVCaptureSession()
//start
captureSession?.startRunning()
//stop
captureSession?.stopRunning()
我想知道当用户打开另一个 ViewController 时如何停止 AVCaptureSession。
【问题讨论】:
以viewWillDisappear
为例?
【参考方案1】:
只需让 viewWillDisappear 方法为您处理。
override func viewWillDisappear(animated: Bool)
super.viewWillDisappear(animated)
captureSession?.stopRunning()
【讨论】:
以上是关于离开 ViewController 时停止 AVCaptureSession的主要内容,如果未能解决你的问题,请参考以下文章
当我更改 viewController 时,viewWillDisappear 错误/停止播放声音