本文介绍了iOS,我应该在项目中设置哪些架构设置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在对我的应用程序进行了一些小的修改并将其加载到最新的xcode版本中之后,我注意到了以下设置.
After doing some minor modifications to my app and loading it up into the latest xcode version, I've noticed the following settings.
我应该删除armv6吗?下拉菜单中的选项为armv7,armv7s.
Should I remove armv6?The option in the drop down says armv7, armv7s.
我应该设置什么?
推荐答案
如果您真的不想支持iPhone 3G
及更低版本(不是 3GS
),则您可以可以删除 armv6
.如果这样做,那么您只需要支持 iOS 4.*
及更低版本,而我认为您并不是真的需要它.
If you don't really want to support iPhone 3G
and lower (not 3GS
) then you can remove armv6
. If you do, then you'll need to support only iOS 4.*
and lower, and i don't think you really need it.
因此,您可以随时从列表中删除 armv6
.
So, you can feel free to remove armv6
from the list.
这篇关于iOS,我应该在项目中设置哪些架构设置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!