Well, that is not something which is built-in in Swift.But the most near to it you can use is Tuples
func floatValues(values: (CGFloat, CGFloat, CGFloat)) { first = values.0 second = values.1 third = values.2}
Well, that is not something which is built-in in Swift.But the most near to it you can use is Tuples
func floatValues(values: (CGFloat, CGFloat, CGFloat)) { first = values.0 second = values.1 third = values.2}