ios – 错误 – 命令ApplicationsXcode.appContentsDeveloperToolchainsXcodeDefault.xctoolchainusrbinswiftc失败,退出代码为1

ios – 错误 – 命令ApplicationsXcode.appContentsDeveloperToolchainsXcodeDefault.xctoolchainusrbinswiftc失败,退出代码为1,第1张

概述我正在使用自定义键盘,如果我在我的课程中包含此代码,我收到错误: let isPad = UIDevice.currentDevice().userInterfaceIdiom == UIUserInterfaceIdiom.PadError - Command/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault. 我正在使用自定义键盘,如果我在我的课程中包含此代码,我收到错误:

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所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1046603.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存