我一直在努力解决这个问题并寻找答案,但找不到任何答案,希望我能在这里得到一些答案。 所以,当我在模拟器中运行我的项目时,如果我选择/硬件 - >摇动手势/,然后代码将在代码中有一个断点。 就在第一行,表示运动== .MotionShake ......它是断点。有没有人有想法?
override func motionBegan(motion: UIEventSubtype, withEvent event: UIEvent?) {
if motion == .MotionShake {
fadeFortune()
}
}
override func motionEnded(motion: UIEventSubtype, withEvent event: UIEvent?) {
if motion == .MotionShake {
newFortune()
}
}
override func motionCancelled(motion: UIEventSubtype, withEvent event: UIEvent?) {
if motion == .MotionShake {
newFortune()
}
}