我有一个枚举:
let type = StoresSortType.address
if lastSorting.type == type {
//logic here
}
我想只检查没有参数的情况,例如:
path_to_file.swift:197:69: Binary operator '==' cannot be applied to two 'StoresSortType' operands
但我有一个错误:CLLocation
如何在最后一种情况下忽略.product
参数?
答案 0 :(得分:0)
您可以使用switch语句
switch( lastSorting )
{
case .distance:
break
default:
break
}