如何获取ios系统信息 iOS | 如何获取ios系统信息 12345678910111213141516171819202122232425NSString *deviceID = [[UIDevice currentDevice] uniqueIdentifier];//设备id// NSString *deviceID = [[UIApplication sharedApplication] uuid];NSString *systemVersion = [[UIDevice currentDevice] systemVersion];//系统版本NSString *systemModel = [[UIDevice currentDevice] model];//是iphone 还是 ipadNSDictionary *dic = [[NSBundle mainBundle] infoDictionary];//获取info-plistNSString *appName = [dic objectForKey:@"CFBundleIdentifier"];//获取Bundle identifierNSString *appVersion = [dic valueForKey:@"CFBundleVersion"];//获取Bundle VersionNSDictionary *userInfo = [[NSDictionary alloc] initWithObjectsAndKeys:deviceID, @"deviceID",systemVersion, @"systemVersion",systemModel, @"systemModel",appName, @"appName",appVersion, @"appVersion",nil]; -------------本文结束感谢阅读-------------