如何在检测到抖动时使应用程序执行操作?

时间:2011-04-05 11:22:24

标签: objective-c

我想知道每当iPhone检测到震动时显示图像的方式。图像将存储在iPhone的文件夹中。源代码真的很有帮助。

1 个答案:

答案 0 :(得分:3)

- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {
      if (event.subtype == UIEventSubtypeMotionShake) {
                // The user shook the device
      }
}