欢迎光临
我们一直在努力

仿威锋客户端登陆界面(重力感应)

建站超值云服务器,限时71元/月

仿威锋客户端登陆界面(重力感应)

项目介绍:

仿威锋客户端登陆界面(重力感应)    https://github.com/15041397127/weiPhone
支持重力感应,主要代码:

[Objective-C] 查看源文件 复制代码

- (void)openGravity:(openGravityUpBlock)block{
    
    //重力感应
    if (_manager.gyroAvailable) {
        //更新速度
        _manager.gyroUpdateInterval = _timeInterval;
        
        
        [_manager startGyroUpdatesToQueue:_queue withHandler:^(CMGyroData * _Nullable gyroData, NSError * _Nullable error) {
            if (error) {
                //停止重力感应更新
                [_manager stopGyroUpdates];
                NSLog(@"%@",[NSString stringWithFormat:@"gryerror:%@",error]);
            }else{
            
                _openGravityUpBlock = block;
                //回主线程
                [self performSelectorOnMainThread:@selector(gyroUpdate:) withObject:gyroData waitUntilDone:NO];

            }
            
        }];
  
    }else{
        NSLog(@"该设备没有重力感应");
    }
 
}

DEMO 直接下载:

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 仿威锋客户端登陆界面(重力感应)
分享到: 更多 (0)