Output of array looks like [[3, 1], [2, 1], [3, 1], [4, 1], [6, 1]] I want particular values 3 and 1 for indexpath.row 1 and so on.
var weekdays = [Int]()
weekdays.append(daysArr)
Attempt 1
for i in weekdays {
for j in i
}
}
On this line - for j in i I get error like "Type any" does not confirm to protocol 'Sequence'
I tried changing type from any to other but nothing seems to be working