在swift中使用if([names count]> 1)的最佳方法是什么?

时间:2015-01-28 13:51:24

标签: ios swift

在Objective C中我们使用了

 if([names count]>1){
   // array count is greater than one
}

我尝试检查swift的方式相同。但是编纂者喊道。

任何想法??

2 个答案:

答案 0 :(得分:4)

编写它的正确方法应该是:

if name.count > 1 {
    // Your code here
}

答案 1 :(得分:0)

您的语法不正确。括号用于Objective-C,而不是Swift。

试试这个:

var shoppingList = ["Eggs", "Milk"]
if(1 < shoppingList.count) {
    println( "Greater than one")
}