我正在开发一款相机应用程序,让用户可以通过按下音量按钮来录制视频。
我可以使用以下代码检测音量按钮的时间:
NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("volumeChanged:"), name: "AVSystemController_SystemVolumeDidChangeNotification", object: nil)
func volumeChanged(notification: NSNotification) {
print(notification);
}
但是,我需要知道音量按钮何时释放,以便我可以停止录制。
你知道我怎么做吗?
谢谢!