摇一摇

- (void)viewDidLoad

{

    [super viewDidLoad];

    [[UIApplication sharedApplication] setApplicationSupportsShakeToEdit:YES];

    [self becomeFirstResponder];

}


- (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(@"完成摇动后处理事件");

}

 

原文地址:https://www.cnblogs.com/lidongq/p/4415979.html