Array:
var rows: [(title: String, body: String, icon: String, iconColor: UIColor)] = []
rows.append(title: "Foo", body:"Bar", icon: "Bas", iconColor: UIColor(netHex: 0x4285f4))
the append line is giving me following error since I upgraded to swift 2:
Cannot invoke append with argument list of type (title: String, body: String, icon: String, iconColor: UIColor)
in swift 1 it was working fine. Any idea whats wrong?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…