I\'m trying to add a tuple (e.g., 2-item tuple) to an array.
var myStringArray: (String,Int)[]? = nil myStringArray += (\"One\", 1)
What I\'m g
Note: It's not work anymore if you do:
array += tuple
you will get error what you need is :
array += [tuple]
I think apple change to this representation because it's more logical