iOS 摇一摇

作者: 南方_H | 来源:发表于2016-02-24 21:15 被阅读248次

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

    - (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 摇一摇

        本文链接:https://www.haomeiwen.com/subject/eveikttx.html