[Solved] What is the best way to use if([names count]>1) in swift? [closed]


Your syntax is incorrect. Brackets are used in Objective-C, not Swift.

Try this:

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

5

solved What is the best way to use if([names count]>1) in swift? [closed]