My class declares an array
var laps: (start: NSDate!, end: NSDate!)[] = []
When a tuple is added to this array I'd like to be able to do something like
let now = NSDate()
var lap = (now, nil)
laps.append(lap)
But at the append
I get the error Missing argument for parameter 'end' in call
.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…