ios – 如果让OR条件允许的话

前端之家收集整理的这篇文章主要介绍了ios – 如果让OR条件允许的话前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以使用 Swift的“OR”条件?

类似的东西(对于Dictionary< String,AnyObject>字典):

if let value = dictionary["test"] as? String or as? Int {
       println("WIN!")
}

解决方法

这没有任何意义,当你只有一个if语句时,你怎么能告诉值是Int还是String?但是你可以这样做:
let dictionary : [String : Any] = ["test" : "hi","hello" : 4]


if let value = dictionary["test"] where value is Int || value is String {
    print(value)
}

(在Swift 2.0中测试过)

如果您需要根据类型执行不同的操作,也可以执行此操作:

if let value = dictionary["test"] {
    if let value = value as? Int {
        print("Integer!")
    } else if let value = value as? String {
        print("String!")
    } else {
        print("Something else")
    }
}
原文链接:https://www.f2er.com/iOS/332393.html

猜你在找的iOS相关文章