小编典典

二进制运算符不能应用于int和int类型的操作数吗?迅捷3

swift

我是新手,已经尝试了两个小时了。在我的代码下面:

if filteredCustomReqList != nil { /* [1] error in this line */
    for i in 0..<filteredCustomReqList?.count {
        tempObj = filteredCustomReqList[i] as! [AnyHashable: Any]
        bezeichString = tempObj?["bezeich"] as! String

        specialRequestLabel.text = ("\(filteredString), \(bezeichString!)")
        print (bezeichString!)
    }
}

错误说:

binary operator cannot be applied to operands of type int and int?

在哪里:

var filteredCustomReqList: [Any]? /* = [Any]() */

如果我使用var filteredCustomReqList: [Any] = [Any]()错误消失了,但我的if条件始终为true。如何获得此修复程序?我已经读过了,但与我的案例(intCGFloat)并不相同。

任何答案和建议都对我有帮助。提前致谢


阅读 456

收藏
2020-07-07

共1个答案

小编典典

您可以使用Optional Binding if let解开filteredCustomReqListOptional变量。

var filteredCustomReqList: [Any]?

if let filteredCustomReqList = filteredCustomReqList {
    for i in 0..<filteredCustomReqList.count {
        tempObj = filteredCustomReqList[i] as! [AnyHashable: Any]
        bezeichString = tempObj?["bezeich"] as! String

        specialRequestLabel.text = ("\(filteredString), \(bezeichString!)")
        print (bezeichString!)
    }
}
2020-07-07