/* [1] error in this line */if filteredCustomreqList != nil { 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条件总是为真.如何解决此问题?我读过this,但与我的情况不一样(它的int和CGfloat).
任何答案和消息都会对我有所帮助.提前致谢
如果要解包filteredCustomreqList可选变量,可以使用Optional Binding.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!) }}总结
以上是内存溢出为你收集整理的二进制运算符不能应用于int和int类型的 *** 作数?斯威夫特3全部内容,希望文章能够帮你解决二进制运算符不能应用于int和int类型的 *** 作数?斯威夫特3所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)