- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在使用自定义键盘,如果我在类里面包含这段代码,我会收到错误消息:
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 {
所以如果有人有任何解决方案,请分享。
最佳答案
试试这个:
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/
我在申请中遇到以下错误。 clang: error: no such file or directory: '/Users/madhavadudipalli/Desktop/ ios proj
我正在使用 Xcode 8.2.1。我也在我的项目中使用 CoreData。当我尝试生成构建或存档时,我看到以下错误。错误中提到的文件有时也会更改。 错误: :0: error: no such fi
我正在尝试使用 Xcode 4.3 中的 pdf 工具包做一个阅读 pdf 的应用程序,但它给了我以下错误 ld: duplicate symbol _OBJC_METACLASS_$_Overlay
我正在尝试在我的资源包中包含一个文件,该文件包含以下内容: LeadPunc="({[`' TrailPunc=}:;-]!?`,.)"' NumLeadPunc=#({[@$ NumTrailPun
我的项目有问题。擅长 xcode 的人可以帮我解决 skype 或 teamviewer 上的链接器错误吗?我没有编写该代码,但它早些时候可以工作,但现在它显示了一些链接器错误 Command /Ap
我正在为 iPhone 和 iPad 开发应用程序。 由于这个错误,我突然无法运行我的项目: clang: error: no such file or directory: '/Users/Akde
我尝试在 Xcode 中构建 Flutter 项目,但不断收到以下错误: 错误(Xcode):找不到文件:/Applications/Xcode.app/Contents/Developer/Tool
最近我开始学习一门类(class),学习如何快速开发 iOS OS X 和 Watch OS 应用程序。我正在上这门关于 udacity 的类(class)。第一步是下载一个项目并将其放在桌面上的文件
我正在使用自定义键盘,如果我在类里面包含这段代码,我会收到错误消息: let isPad = UIDevice.currentDevice().userInterfaceIdiom == UIUser
我正在 Xcode 9 中处理一个 swift 项目。它工作正常,但在运行时突然出现一些错误。 Command/Applications/Xcode9.app/Contents/Developer/T
当我尝试运行我的 C++ 程序时出现错误: #include #include //standard c++ library of time.h using namespace std; clas
我正在将我的 swift 项目更新到 Xcode 7 上的 Swift 2.0。xcode 在构建项目时报告了以下错误: 命令/Applications/Xcode.app/Contents/Deve
如果我将此行添加到我的 PROJECT-Bridging-Header.h 文件 #import "Typhoon.h" Xcode 6.1 抛出这个错误/Applications/Xcode.app
当我在 Xcode Version 8.0 beta 4 (8S188o) 上编译我的代码时,我得到一个导致编译失败的错误: Command /Applications/Xcode-beta.app/
我在归档时遇到这个错误: Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/
当我在 XCode 版本 10.0 上编译我的代码时,我得到一个导致编译失败的错误: 我会尝试所有的可能性但无法解决错误 清理我的项目alt + Shift + Command + K 删除 ~/Li
我是一名优秀的程序员,十分优秀!