我有以下代码:
- (void) motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{
if (motion == UIEventSubtypeMotionShake){
NSLog(@"Detected a shake"); }
}
此代码在摇动开始时为 NSLogs,或者我可以实现 motionEnded,然后在摇动结束时将 NSLog,但我想要的是在摇动期间执行代码(iPhone 摇动时进度条从 0 到 100)。
你能帮我吗?