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

问题描述 投票:0回答:1

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

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

任何的想法?

multiple selection = true

第一个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]
        }
    }
}

secondVC:

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

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

two choices

ios swift cocoa-touch uiviewcontroller
1个回答
0
投票

你可以试试这个

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

© www.soinside.com 2019 - 2024. All rights reserved.