i have the dictionary - dictTime: [Int:[Int]] and I'd like to show it in tableView in cell.
To show key in every cell - not a problem, but I'd like to show every element of value of dictionary in "own" UILabel, so I created [UILabel] and understand that count of UILabel in array must be equal count of elements in value of dictionary, but how to do it in func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell for showing for every row (row - it's key-[value])?
numberOfRows(inSection section: Int)and return your count.cell.textLabel?.text = indexPath.rowbycell.textLabel?.text = dictTime[indexPath.row]incellForRowAt?[1:[1,2,3], 2: [1,2,3]]and so I have two row (because 2 keys) and every row I'd like to have 3 labels at row and first label has text "1", next - "2", third - "3"