This is my code:
var array = [(0.0, 0.0, 0.0, 0.0)]
Xcode thinks its a double array. It should be a CGFloat array. I already tried
var array: CGFloat = [(0.0, 0.0, 0.0, 0.0)]
var array = [(0.0, 0.0, 0.0, 0.0)] as! CGFloat
var array: [CGFloat] = [(0.0, 0.0, 0.0, 0.0)]
and some other options without success. How to let Xcode know this is an CGFloat array? I can not append values to the array now.