I'm using a WKInterfacePicker and there is a need of inserting dynamic data into the array of the format [(String, String)]. I can insert data statically into this array like,
var cc:[(String, String)] = [
("Item 1", "Row 1"),
("Item 2", "Row 2")]
Can anyone please help me how to insert data into this dynamically ?