gpt4 book ai didi

ios - 如何通过代码获取A1532这样的iPhone设备监控模型?

转载 作者:行者123 更新时间:2023-11-29 11:42:03 26 4
gpt4 key购买 nike

最近需要制作一个Mac软件获取iPhone设备信息,但是无法通过代码获取设备监管模型。我用 mobileDeviceManager获取我需要的信息。有一个示例代码:

- (NSString*)serialNumber {
return [self deviceValueForKey:@"SerialNumber"];
}
// Returns an informational value from the device's root domain.
// @param key can apparently be any value like DeviceName...

不幸的是,我找不到获取设备监管模型值的关键。我可以通过代码获取未越狱iPhone的设备监管模式吗?

最佳答案

试试这个:

#include <sys/sysctl.h>
#include <sys/utsname.h>

+ (NSString *)deviceName {
struct utsname systemInfo;
uname(&systemInfo);
return [NSString stringWithCString:systemInfo.machine encoding:NSUTF8StringEncoding];
}

关于ios - 如何通过代码获取A1532这样的iPhone设备监控模型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45960451/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com