作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码
@implementation UIDevice(machine)
- (NSString *)machine
{
size_t size;
// Set 'oldp' parameter to NULL to get the size of the data
// returned so we can allocate appropriate amount of space
sysctlbyname("hw.machine", NULL, &size, NULL, 0);
// Allocate the space to store name
char *name = malloc(size);
// Get the platform name
sysctlbyname("hw.machine", name, &size, NULL, 0);
// Place name into a string
NSString *machine = [NSString stringWithCString:name];
// Done with this
free(name);
return machine;
}
@end
/* ... */
NSLog(@"device: %@", [[UIDevice currentDevice] machine]);
我得到的输出为:
Platforms:
-----------
iPhone1,1
iPhone1,2
iPod1,1
iPod2,1
iPhone/iPod touch 后附加的两个数字表示什么,即 (1,1 ) 、(1,2) 等?
谢谢比兰奇
最佳答案
iPhone1,1:iPhone(原装)
iPhone1,2:iPhone 3G
iPhone2,1:iPhone 3GS
iPhone3,1:iPhone 4
iPhone4,1:iPhone 4S
iPod1,1:iPod touch(原装)
iPod2,1:iPod touch(第二代)
iPod3,1:iPod touch(第三代)
iPod4,1:iPod touch(第四代)
iPad1,1:iPad(原版)
iPad2,1:iPad 2
iPad3,1:iPad(第三代)
关于iPhone 设备一代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1713480/
在设置 openGl 表面之前,我需要确定我的应用运行的 iPad 版本。 如果它在旧 iPad 1 上运行,启用抗锯齿太慢了,而在 iPad 2+3 上应该没有性能问题,所以我需要先检测一下。 关于
我对 Heap、Young、Tenured 和 Perm 一代感到困惑。 谁能解释一下? 最佳答案 Java 垃圾收集器被称为通用垃圾收集器。应用程序中的对象存在不同的时间长度,具体取决于它们的创建位
我是一名优秀的程序员,十分优秀!