I'm getting bit confused hopefully somebody can put me straight
i have function which works as i would expect in the playground
func testFunction(Astring:String,Anumber:Int,Afloat:CGFloat)
{
println(Astring)
println(Anumber)
println(Afloat)
}
testFunction("Hello",25,25.00)
but in a project i have to call it like this, if i don't i get error missing argument label "Afloat:" in call
testFunction("Hello",Anumber:25,Afloat:25.00)
the only difference is I'm calling the function from a button? thanks for the help of this site without it I would be lost