I'm trying to make an array of tuples to store the data of a to-do-list app but can't figure out how to append the tuples to the array. Here is my code:
First, the array was declared globally:
var eventList : [(name: String, date: String)] = []
Here's the code I tried to use, but I get a complier error saying "Missing argument for parameter 'date' in call". (This line of code is inside a buttonPressed
action)
eventList.append((name: titleField.text, date: convertDate(eventDate.date)))
Why is this causing a compiler error and how can I fix it?
Make a typealias for your tuple and then use it.