iOS-获取Model(设备型号)、Version(设备版本)、app(程序版本)等

时间:2023-03-10 06:58:41
iOS-获取Model(设备型号)、Version(设备版本)、app(程序版本)等

IOS-获取Model(设备型号)、Version(设备版本)、app(程序版本)等

NSLog(@"uniqueIdentifier: %@", [[UIDevice currentDevice] uniqueIdentifier]);

    NSLog(@"name: %@", [[UIDevice currentDevice] name]);

    NSLog(@"systemName: %@", [[UIDevice currentDevice] systemName]);

    NSLog(@"systemVersion: %@", [[UIDevice currentDevice] systemVersion]);

    NSLog(@"model: %@", [[UIDevice currentDevice] model]);

    NSLog(@"localizedModel: %@", [[UIDevice currentDevice] localizedModel]);

NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];

CFShow(infoDictionary);

// app名称

NSString *app_Name = [infoDictionary objectForKey:@"CFBundleDisplayName"];

// app版本号

NSString *app_Version = [infoDictionary objectForKey:@"CFBundleShortVersionString"];

// app build版本号

NSString *app_build = [infoDictionary objectForKey:@"CFBundleVersion"];