traitCollection.userInterfaceIdiom 返回 -1

Posted

技术标签:

【中文标题】traitCollection.userInterfaceIdiom 返回 -1【英文标题】:traitCollection.userInterfaceIdiom return -1 【发布时间】:2014-12-15 03:03:18 【问题描述】:

我想检查 iPhone 或 iPad 是否使用这些代码

if traitCollection.userInterfaceIdiom == UIUserInterfaceIdiom.Phone 
    println("iPhone")
 else 
    println("iPad")

我尝试使用 iPhone 模拟器和我的 iPhone,但它总是打印“iPad”

然后我尝试打印“traitCollection.userInterfaceIdiom”

println(traitCollection.userInterfaceIdiom.rawValue)

它打印“-1”而不是“0”(iPhone)或“1”(iPad)

我不知道问题出在哪里,我一直在谷歌上搜索但没有找到这里发生的事情。

【问题讨论】:

【参考方案1】:

你做得对。我将您的代码直接复制并粘贴到应用程序中,与您的完全一样:

if traitCollection.userInterfaceIdiom == UIUserInterfaceIdiom.Phone 
    println("iPhone")
 else 
    println("iPad")

在 iPhone 模拟器中,我在控制台中看到 iPhone。在 iPad 模拟器中,我在控制台中看到 iPad

您可能只是在错误的时间运行此代码。请记住,除非您的视图在界面中,否则不会设置您的特征集合。如果您想在其他时间查看,请向 UIDevice.currentDevice()(而不是 trait 集合)询问 userInterfaceIdiom

【讨论】:

【参考方案2】:

在视图出现之前,特征集合属性是未知的。

来自苹果的documentation:

UIUserInterfaceIdiomUnspecified

当一个对象有一个特征集合,但它还没有在一个环境中时使用。例如,已创建但未放入视图层次结构的视图。

【讨论】:

以上是关于traitCollection.userInterfaceIdiom 返回 -1的主要内容,如果未能解决你的问题,请参考以下文章