- (void)viewDidLoad
{
[superviewDidLoad];
[[UIApplication sharedApplication] setApplicationSupportsShakeToEdit:YES];
[selfbecomeFirstResponder];
}
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
//检测到摇动
}
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
//摇动结束
if (event.subtype ==UIEventSubtypeMotionShake) {
//something happens
[self test];
}
}
- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
//摇动取消
}
- (BOOL)canBecomeFirstResponder {
return YES;
}
-(void)test
{
NSLog(@"完成摇动后处理事件");
}