let isPad = UIDevice.currentDevice().userInterfaceIdiom == UIUserInterfaceIdiom.PadError - Command/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc Failed with exit code 1
我需要这个代码,因为当用户在iPad上运行iPhone应用程序(如Instagram)时,我需要加载iPhone键盘预设并使用其几何体.我尝试下面的代码,但它不是一个解决方案:
如果UI_USER_INTERFACE_IdioM()== .Pad
{
}
如果有人有任何解决方案,请分享.
解决方法 试试这个:if UIDevice.currentDevice().userInterfaceIdiom == .Pad { // iPad Stuff}else if UIDevice.currentDevice().userInterfaceIdiom == .Phone { // iPhone Stuff}
编辑
斯威夫特3
if UIDevice.current.userInterfaceIdiom == .pad { // iPad Stuff}else if UIDevice.current.userInterfaceIdiom == .phone { // iPhone Stuff}总结
以上是内存溢出为你收集整理的ios – 错误 – 命令/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc失败,退出代码为1全部内容,希望文章能够帮你解决ios – 错误 – 命令/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc失败,退出代码为1所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)