在Objective C中我们使用了
if([names count]>1){
// array count is greater than one
}
我尝试检查swift的方式相同。但是编纂者喊道。
任何想法??
答案 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")
}