I have an array like this:
var converter1 = [
["title": "value1", "kf": "1"],
["title": "value2", "kf": "4.324"]]
And if, else case in cellForRowAt:
let cell1 = tableView.dequeueReusableCell(withIdentifier: "resultCell") as! resultTableViewCell
cell1.nameResult.text = converter1[indexPath.row]
cell1.labelResult.text = converter1[indexPath.row]
return cell1
How could I in nameResult.text show "title" and "kf" in labelResult?