在iOS中录制视频时如何检测设备的移动速度

时间:2018-08-01 06:50:29

标签: ios objective-c iphone xcode

我正在开发一个相机应用程序,我想警告用户在使用相机进行录制时快速移动其设备。

所以我想检测设备的移动速度(从左到右),并警告用户设备移动得如此之快

ios是否有任何简单的方法来检测设备的速度移动?

请帮助

1 个答案:

答案 0 :(得分:1)

// Use Shake Gesture

override func becomeFirstResponder() -> Bool {
    return true
}   


override func motionEnded(_ motion: UIEventSubtype, with event: UIEvent?) {
    if motion == .motionShake {

       // Your Code or Show Alert
    }
}