将数据字典到自定义表格视图单元格中

时间:2018-07-03 04:46:45

标签: ios swift uitableview dictionary

我将Dictionay数据作为键值对。这里的关键是图像,值是图像的描述。如何将这些数据插入自定义表格视图单元格:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "cellIdentifier", for: indexPath) as! CustomTableViewCell

    // **How do I insert image and description data here*****
    return cell
}

0 个答案:

没有答案