以下のコードに従ってタプルを単純に配列に追加しようとしています。タプルを配列に割り当てる
class Test: UIView {
let circleRadius: CGFloat = 10
let mainThemeColor: UIColor = UIColor.green
struct Properties {
var properties: (coordinatesXY: CGPoint, radius: CGFloat, group: String, fillingColor: UIColor)
}
var circleCollection: [Properties] = []
func setProperties() {
circleCollection.append(coordinatesXY: CGPoint(), radius: circleRadius, group: "test", fillingColor: mainThemeColor)
//Error Extra argument 'radius' in call
}
}
ケースを解決する方法はありますか?