gpt4 book ai didi

ios - 错误——Command/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc 失败,退出代码为 1

转载 作者:搜寻专家 更新时间:2023-10-31 19:30:45 29 4
gpt4 key购买 nike

我正在使用自定义键盘,如果我在类里面包含这段代码,我会收到错误消息:

let isPad = UIDevice.currentDevice().userInterfaceIdiom == UIUserInterfaceIdiom.Pad

Error - 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 {

所以如果有人有任何解决方案,请分享。

Error screen shot

最佳答案

试试这个:

if UIDevice.currentDevice().userInterfaceIdiom == .Pad {

// iPad Stuff
}

else if UIDevice.currentDevice().userInterfaceIdiom == .Phone {

// iPhone Stuff
}

编辑

swift 3

if UIDevice.current.userInterfaceIdiom == .pad {

// iPad Stuff
}

else if UIDevice.current.userInterfaceIdiom == .phone {

// iPhone Stuff
}

关于ios - 错误——Command/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc 失败,退出代码为 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31934063/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com