Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
988 views
in Technique[技术] by (71.8m points)

swift - Appending tuples to an array of tuples

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...