iOS获取当前设备信息详解手机开发

   //获取iOS设备的各种信息 
    
    NSString *device_token = [[[UIDevice currentDevice] identifierForVendor] UUIDString]; 
    NSString *device_os = [[UIDevice currentDevice] systemVersion]; 
    //包含28个Key/Value 
    NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary]; 
    NSString *currentVersion = [infoDic objectForKey:@"CFBundleShortVersionString"];

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/3337.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论