如何检测手机是否被移动

时间:2016-04-30 14:28:22

标签: ios iphone swift core-motion


我想知道如何使用swift来检测iPhone是否在过去60秒内移动

我在下面看到了这段代码,但只有在手机动摇时才有效 是否有可能检测到手机何时移动但是没有剧烈摇晃?

   override func motionEnded(motion: UIEventSubtype,
                          withEvent event: UIEvent?) {
        if motion == .MotionShake {
            let controller = UIAlertController(title: "Shake",
                                           message: "The device is shaken",
                                           preferredStyle: .Alert)

            controller.addAction(UIAlertAction(title: "OK",
                style: .Default,
                handler: nil))

            presentViewController(controller, animated: true, completion: nil)

        }

}

1 个答案:

答案 0 :(得分:1)

我认为您将需要使用加速度计并对输出应用中等低通滤波器,这样您就可以忽略非常渐进的变化,但可以获得适度的加速度。你应该能够调整门槛。

我建议搜索“ios accellerometer低通滤波器”。你需要编写自己的代码。