我有几行工作代码:
let email = User.sharedInstance.emailAddress ?? "" accountEmailAddress.text = email
User.sharedInstance是User类的非可选实例.它的emailAddress属性是可选的String? accountEmailAddress是一个UILabel.
如果我尝试把它变成一行代码:
accountEmailAddress.text = User.sharedInstance.emailAddress ?? ""
我得到Swift编译器错误“模糊使用’??’”.
我不清楚在这里使用无合并运算符的含义是什么.我正在寻找为什么编译器的抱怨,出于好奇,如果有一种方法使它成为一个干净的一线.
(Xcode 6 beta 6)
编辑:操场上最小的复制:
// Playground - noun: a place where people can play var foo: String? var test: String? // "Ambiguous use of '??'" foo = test ?? "ValueIfNil"
我猜这是因为UILabel.text的可选性.操作符?有2个重载 – 一个返回T,另一个返回T?
原文链接:https://www.f2er.com/swift/319524.html由于UILabel.text同时接受String和String?,编译器无法决定使用哪个重载,因此会引发错误.
您可以通过严格指定结果类型来修复此错误:
String(User.sharedInstance.emailAddress ?? "") (User.sharedInstance.emailAddress ?? "") as String // or,when String! will become String? in the next beta/gm (User.sharedInstance.emailAddress ?? "") as String?