我想知道每当iPhone检测到震动时显示图像的方式。图像将存储在iPhone的文件夹中。源代码真的很有帮助。
答案 0 :(得分:3)
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {
if (event.subtype == UIEventSubtypeMotionShake) {
// The user shook the device
}
}