随笔 - 46,  文章 - 0,  评论 - 0,  阅读 - 21118
复制代码
- (void)viewDidLoad

{

    [super viewDidLoad];

   

    // 操作系统

   

    NSString * osName  =[[UIDevice currentDevice]systemName];

   

    // 操作系统版本

   

    NSString * systemVersion  =[[UIDevice currentDevice]systemVersion];

   

    NSLog(@"os =%@ ",osName);

   

    NSLog(@"version =%@",systemVersion);

   

    // IOS设备模型

   

    NSString *iosmodel  =[[UIDevice currentDevice]model];

   

    NSLog(@"%@",iosmodel);

   

    //  电量的范围从0.0(全部泻出)-1.0(100%)在访问这个属性之前要确保batterymonitoring这个属性是可用的

   

    // 电量查询

    float batteryLevel =  [UIDevice currentDevice].batteryLevel;

 

    NSLog(@"%f",batteryLevel);

   

    // 检测电池状态

   

    UIDeviceBatteryState batteryState = [[UIDevice currentDevice]batteryState];

   

    //    有如下几个状态

    //  UIDeviceBatteryStateUnknown 0  未识别         0

    //  UIDeviceBatteryStateUnplugged, 充电中         1

    //  UIDeviceBatteryStateCharging,  少于100%       2

    //  UIDeviceBatteryStateFull,      充满了         3

   

    NSLog(@"%d",batteryState);

   

    // 检测是否支持多任务处理

    BOOL support =[[UIDevice currentDevice]isMultitaskingSupported];

   

    if(support)

    {

        NSLog(@"supportmultiTask");

    }

    else

    {

        NSLog(@"don,t supportmultiTask");

    }

   

     // 检测当前设备方向是否改变

     // YES 方向改变

     // NO  方向未改变

     BOOL status =[UIDevice currentDevice].generatesDeviceOrientationNotifications ;

   

     NSLog(@"%d",status);

     // 开始改变设备方向 如果需要在改变方向的时候处理一些事情可以重写这个方法

     // [[UIDevice currentDevice]beginGeneratingDeviceOrientationNotifications ];

   

     // 结束改变设备方向 同上

     // [[UIDevice currentDevice]endGeneratingDeviceOrientationNotifications];

   

     // 临近状态检测

     // 当你的身体靠近iPhone而不是触摸的时候,iPhone将会做出反应。(需要一定的面的影射,约5mm左右的时候就会触发)

   

     // YES 临近  消息触发

   

     // NO

  

    BOOL proximityState = [[UIDevice currentDevice]proximityState];

   

   

    NSLog(@"%d",proximityState);

   

    UIDevice *device =  [UIDevice currentDevice ];

   

    device.proximityMonitoringEnabled=YES; // 允许临近检测

   

    // 临近消息触发

   

    [[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(proximityChanged:)

                                                name:UIDeviceProximityStateDidChangeNotification object:device];

   

}

 // 临近手机消息触发

- (void) proximityChanged:(NSNotification *)notification {

    UIDevice *device = [notification object];

    NSLog(@"In proximity:%i",device.proximityState);

    if(device.proximityState==1){

       

        //do something

    }

}

 
复制代码

 

posted on   咪咕咪咕  阅读(808)  评论(0编辑  收藏  举报
编辑推荐:
· C# 深度学习:对抗生成网络(GAN)训练头像生成模型
· .NET 适配 HarmonyOS 进展
· .NET 进程 stackoverflow异常后,还可以接收 TCP 连接请求吗?
· SQL Server统计信息更新会被阻塞或引起会话阻塞吗?
· C# 深度学习框架 TorchSharp 原生训练模型和图像识别
阅读排行:
· 这或许是全网最全的 DeepSeek 使用指南,95% 的人都不知道的使用技巧(建议收藏)
· 拒绝繁忙!免费使用 deepseek-r1:671B 参数满血模型
· 本地搭建DeepSeek和知识库 Dify做智能体Agent(推荐)
· Sdcb Chats 重磅更新:深度集成 DeepSeek-R1,思维链让 AI 更透明!
· DeepSeek-R1本地部署如何选择适合你的版本?看这里
点击右上角即可分享
微信分享提示