Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

I've tried to following, and it looked correct syntactically:

typealias MyTuple = (start: NSDate!, end: NSDate?)

then in the method, I did:

var laps: Array<MyTuple> = Array()
laps.append((NSDate.date(), nil))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...