多个选定的行以在其他视图控制器中显示多个图像

Multiple selected rows to show multiple images in other view controller

UITableViewController 中选择一个字符串,在另一个视图控制器中显示相同名称的图片,它应该正常工作。

但问题是当我想选择多个字符串来显示多个不同的图片时。 我一直在尝试添加另一个 IBOutlet,将内容加倍,但它只是向我显示了两次相同的图片。

有什么想法吗?

多选=真

第一个 VC 继续:

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {

    if segue.identifier == "tablesegue" {

        if let indexPath = self.tableView.indexPathForSelectedRow {
            let selectedRow = indexPath.row
            let passingVal = segue.destination as! Tabulka_data
            passingVal.selectedImageName = self.tableItems[selectedRow]
        }
    }
}

秒VC:

@IBOutlet weak var pic: UIImageView!
var selectedImageName:String = ""

override func viewWillAppear(_ animated: Bool) {
    self.pic.image = UIImage(named: selectedImageName)
}

two choices

你可以试试这个

let yourDataArray = ["name 1","name 2","name 3","name 4","name 5"]
var imageSelected = [String]()

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return yourDataArray.count
}


func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = yourTable.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
    cell.textLabel?.text = yourDataArray[indexPath.row]
    return cell
}


func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    imageSelected.append(yourDataArray[indexPath.row])
    print(imageSelected)
}

func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
    for (index, element) in imageSelected.enumerated() {
        if element == yourDataArray[indexPath.row] {
         imageSelected.remove(at: index)
        }
    }
    print(imageSelected)
}

您可以使用 didSelectRowAt 和 didDeoRowAt 来查看选择了哪些行,然后将 imageSelected 传递给第二个 viewController