我们知道,我们可以使用一个if let语句作为速记,检查一个可选的nil然后unwrap。
但是,我想使用逻辑AND运算符&&&&
所以,例如,在这里我做可选链接解开和可选的我的rootViewController到tabBarController。但不是嵌套if语句,我想把它们结合起来。
if let tabBarController = window!.rootViewController as? UITabBarController { if tabBarController.viewControllers.count > 0 { println("do stuff") } }
组合给予:
if let tabBarController = window!.rootViewController as? UITabBarController && tabBarController.viewControllers.count > 0 { println("do stuff") } }
上面给出了编译错误使用未解析的标识符’tabBarController’
简化:
if let tabBarController = window!.rootViewController as? UITabBarController && true { println("do stuff") }
这给出了编译错误条件绑定中的绑定值必须是可选类型。尝试了各种句法变化,每个都给出不同的编译器错误。我还没有找到订单和括号的获胜组合。
所以,问题是,是否可能,如果是什么是正确的语法?
注意,我想这样做与if语句不是switch语句或三元?运算符。
从Swift 1.2开始,这是可能的。
Swift 1.2 and Xcode 6.3 beta release notes状态:
原文链接:https://www.f2er.com/swift/321338.htmlMore powerful optional unwrapping with if let — The if let construct
can now unwrap multiple optionals at once,as well as include
intervening boolean conditions. This lets you express conditional
control flow without unnecessary nesting.
使用上面的语句,语法将是:
if let tabBarController = window!.rootViewController as? UITabBarController where tabBarController.viewControllers.count > 0 { println("do stuff") }
这使用where子句。
另一个例子,这次将AnyObject转换为Int,解包可选,并检查解包的可选符合条件:
if let w = width as? Int where w < 500 { println("success!") }