检查没有参数的枚举案例

时间:2016-12-05 08:20:07

标签: ios swift enums

我有一个枚举:

 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参数?

1 个答案:

答案 0 :(得分:0)

您可以使用switch语句

switch( lastSorting )
{
 case .distance:
 break
 default:
 break
}