摘要:
直接NSLog(@"current_device:%@",[UIDevice currentDevice].model);即可看出它输出的是当前设备,所以根据这个字符串可简单的判断当前是什么设备,进而实现一些要求不严格的操作,例如 打电话,分辨率资源配置等NSString *device = [[UIDevice currentDevice].model substringToIndex:4];if ([device isEqualToString:@"iPho"]){ // This is iPhone.}else if ([device isEqua 阅读全文
摘要:
把"xxx-info.plist"中的"Bundle display name"的值改成了英文,或者把它的值修改成系统默认的"${PRODUCT_NAME}"或者任意的英文字符时,程序可以正常运行。另外app store也规定 Bundle display name不能使用中文。如果要显示中文可以采用app名称国际化的方式。建立文件InfoPlist.strings,添加内容CFBundleDisplayName = "应用程序名"; 阅读全文