更新测试iPhone 6S到11.1?(Updating testing iPhone 6S to 11.1?)
我看到iOS 11.1已正式推出,但我仍然在Xcode中看到“部署目标”以支持iOS 11。
这是否意味着如果我更新到iOS 11.1,我将无法测试我的应用程序? 这是什么意思或我解释错了?
I saw that iOS 11.1 has been officially rolled out but I still see "deployment target" in Xcode to support up to iOS 11.
Does that mean that if I update it to iOS 11.1 I won't be able to test my apps on it? Is that what It means or I interpret it wrong?
原文:https://stackoverflow.com/questions/47042087
最满意答案
所以关于部署目标的一些快速信息:
假设您已将最低部署目标设置为iOS 9.这意味着您的应用程序与iOS 9及更高版本的设备兼容。
该应用程序不能在低于9.0的设备上运行,但可以在任何大于iOS 9.0的iOS版本上运行。 这里的文章
我测试了这个,不幸的是它没有工作。 我正在运行最新的Xcode,并更新了我的手机。 在升级之前,您应该等到Xcode正式支持iOS 11.1+。
So some quick information on deployment targets:
Lets say you have set minimum deployment target to iOS 9. This means your application is compatible for iOS 9 and above devices.
The application won't run on below 9.0 devices but can run on any iOS version greater than iOS 9.0. Article here
I tested this and it DID NOT work unfortunately. I was running the latest Xcode and just updated my phone. You should wait until Xcode officially supports iOS 11.1+ before upgrading.
相关问答
更多-
这是6s plus支持的格式: Format #1 Video Range, Video Dimensions: 192x 144, 3- 30 Frames per Second, High-Res Still Image Dimensions:4032x3024, Field of View:57.710, max zoom:189.00 (upscales @21.00), AF System:2, ISO:23.0-1472.0, Shutter Speed:0.000013-0. ...
-
使用内置麦克风时,6S显然锁定为48000采样率。 也许您尝试将格式设置为44100.我认为处理此问题的唯一方法是查询活动的AVAudioSession以获取其sampleRate属性,并将格式的采样率设置为该值。 The 6S is apparently locked to a 48000 sample rate when using the built in microphone. Maybe you tried to set the format to 44100. I think the only ...
-
它在这里说 在页面的底部.... 发展环境 Xcode 7支持3D Touch开发。 Xcode的所有调试功能都可用于实现新功能。 记住以下几点: 使用Xcode 7.0,您必须在支持3D Touch的设备上开发。 Xcode 7.0中的模拟器不支持3D Touch。 使用Xcode 7.0,您必须在代码中实现您的窥视和弹出视图控制器。 Xcode 7.0中的Interface Builder不支持配置视图控制器或3D Touch的转换。 确保使用3D Touch启用和禁用测试您的应用程序,确保所有功能都可 ...
-
所以关于部署目标的一些快速信息: 假设您已将最低部署目标设置为iOS 9.这意味着您的应用程序与iOS 9及更高版本的设备兼容。 该应用程序不能在低于9.0的设备上运行,但可以在任何大于iOS 9.0的iOS版本上运行。 这里的文章 我测试了这个,不幸的是它没有工作。 我正在运行最新的Xcode,并更新了我的手机。 在升级之前,您应该等到Xcode正式支持iOS 11.1+。 So some quick information on deployment targets: Lets say you have ...
-
1x图像仅供非视网膜设备使用。 因此,如果iPhone 4和更高版本的型号正在使用2x图像,这是完全正常的。 只有iPhone 2G,3G和3GS是非视网膜的。 您可以从此处查看设备分辨率: http : //www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions 而且你的图像分辨率也错了。 它应该如下所示: a x b (image.png) 2a x 2b (image@2x.png) 3a x 3b (image@3x.png) ...
-
iPhone 6s的iPhone 6s Plus尺寸屏幕被切断(iPhone 6s Plus size screen getting cut off on iPhone 6 Plus)[2022-02-13]
您可能想要使用自动布局 https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/AutolayoutPG/ 使用调试屏幕 po [[UIWindow keyWindow] _autolayoutTrace] 检查用户是否使用iPhone 6或6 Plus iOS如何通过宏检测iPhone 6 plus,iPhone 6,iPhone 5? You may want to use Auto Layout ... -
第一步是确定设备是6还是6S。 这是执行此操作的Swift代码: import Foundation import UIKit extension UIApplication { public func isIPhone6or6S() -> Bool { let IPHONE_6 = "iPhone7,2" let IPHONE_6S = "iPhone8,1" var systemInfo = utsname() unam ...
-
您输入了无效的“必需设备功能”值。 删除这些无效的条目,您的问题就会消失。 请参阅为可能使用的有效值列表声明所需的设备功能 。 You have entered invalid "required device capabilities" values. Delete those invalid entries and your issue will go away. See Declaring the Required Device Capabilities for the valid list of v ...
-
安装XCode 7.2将解决您的问题。 Installing XCode 7.2 will resolve your problem.
-
从iOS9开始,您的项目必须包含启动图像。 他们为iPhone6设备提供的“ZOOMED”模式现已弃用,无法使用(如果你的基础SDK是iOS9)。 相反,不包含iPhone6设备启动图像的应用程序将采用letterboxed。 As of iOS9, your project must contain launch images. The 'ZOOMED' mode they had for iPhone6 devices is now deprecated and cannot be used (if y ...