iOS 摇一摇

摇到妹子。哈哈~~~
上代码:

- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{

    NSLog(@"开始摇一摇");
     
}
/** 
 *  摇一摇结束(需要在这里处理结束后的代码)
 */
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event{

    // 不是摇一摇运动事件
    if (motion != UIEventSubtypeMotionShake) return;
     
    [SVProgressHUD showErrorWithStatus:@"妹子你在哪?"];
}

/** 
 *   摇一摇取消(被中断,比如突然来电)
 */
- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
    NSLog(@"被中断");
}

最近写项目,没办法写太多,但是我会坚持每天写一点,见谅。~

你可能感兴趣的:(iOS 摇一摇)