繁体   English   中英

在单元格单击时打开一个 Viewcontroller - Swift

[英]Open a Viewcontroller on cell click - Swift

我正在尝试打开一个新的视图控制器,它有一个文本字段,其中包含在 UITableView 中单击的单元格文本。 虽然我已经发现了如何获取被点击单元格的信息,但我不知道如何将该值推送到新的 ViewController。 这是我当前的代码:

class NearbyViewController: UIViewController, UITableViewDelegate, 
    UITableViewDataSource {

    @IBOutlet weak var nearbyTableView: UITableView!
    var myList: [String] = []


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

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let cell = UITableViewCell(style: .default, reuseIdentifier: "cell")
        var (cellName) = myList[indexPath.row]
        cell.textLabel?.text = cellName
        return cell
    }

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        let cell = UITableViewCell(style: .default, reuseIdentifier: "cell")
        var (cellName) = myList[indexPath.row]
        cell.textLabel?.text = cellName

        print("row\(indexPath.row)")
        print("name: \(cellName)")

    }

    override func viewDidLoad() {
        super.viewDidLoad()



}

非常感谢

一些应该对您有所帮助的操场代码。 使用didSelectRowAt您需要的参数调用openDetails func。

import UIKit

final class NearbyViewController: UIViewController {

    // Your controller implementation

    private func openDetails(cellName: String) {
        let detailsController = DetailedInfoViewController() // OR use storyboard.instantiate
        detailsController.cellName = cellName

        // You must have a Navigaion stack for your controller
        self.navigationController?.pushViewController(detailsController, animated: true)
    }
}

final class DetailedInfoViewController: UIViewController {
    var cellName: String!

    // Your controller implementation

    override func viewDidLoad() {
        super.viewDidLoad()

        // Set data into view outlets
    }
}

在您的didSelectIndexPath方法中,您正在访问一个单元格并设置其标签的文本。

你想要做的是:

let viewController = ViewController()
viewController.textFieldText = cell.textLabel.text 
navigationController?.pushViewController(viewController, animated: true)

然后,一旦您在 ViewController 中有textFieldText ,您就可以说:

textField.text = textFieldText

尝试:

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  //  let cell = UITableViewCell(style: .default, reuseIdentifier: "cell") -> not correct
       let cell = tableView. cellForRowAt(indexpath)  // but don't need cell
    let (cellName) = myList[indexPath.row]
    let viewController = ViewController()
    viewController.textField.Text = cellName 
    self.navigationController?.pushViewController(viewController, animated: true)
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM