我想知道如何让一个单元格转到 Xcode 9 中的另一个视图控制器,swift

I was wondering how to make a cell go to another view controller in Xcode 9, swift

我一直在尝试弄清楚如何配置一个单元格以转到另一个视图,在这种情况下,我在登录后列出一组服务,当用户点击他们喜欢的服务时,它把他们带到地图上。但是我不知道如何以一种在点击时将它们带到地图的方式设置单元格。我试过创建一个 segue,但在点击单元格时没有任何反应。我是编程新手,想知道是否有人可以解释一下。

我看了很多 youtube 视频,让我了解了如何设置单元(基本内容)。

非常感谢您的建议,谢谢!

希望本文 post 对任何正在踏入编程之旅的人有所帮助!

谢谢,编码愉快!

这是我目前拥有的代码:

import UIKit
struct cellData {
let cell : Int!
let text : String!
let image : UIImage! }

class ListServicesTVC: UITableViewController {

var arrayOfCellData = [cellData]()


override func viewDidLoad() {
    arrayOfCellData = [cellData(cell : 1, text : "Barber Services", image : #imageLiteral(resourceName: "barberservice") ),
                       cellData(cell : 2, text : "Salon Services", image : #imageLiteral(resourceName: "salonservice"))]
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

    return arrayOfCellData.count

}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    if arrayOfCellData[indexPath.row].cell == 1 {

        let cell = Bundle.main.loadNibNamed("BarberServiceCell", owner: self, options: nil)?.first as! BarberServiceCell

        cell.barberImageView.image = arrayOfCellData[indexPath.row].image
        cell.barberServicesLabel.text = arrayOfCellData[indexPath.row].text

        return cell
    }
    else if arrayOfCellData[indexPath.row].cell == 2 {

        let cell = Bundle.main.loadNibNamed("SalonServicesCell", owner: self, options: nil)?.first as! SalonServicesCell

        cell.salonImageView.image = arrayOfCellData[indexPath.row].image
        cell.salonServicesLabel.text = arrayOfCellData[indexPath.row].text

        return cell
    }

    else {
        let cell = Bundle.main.loadNibNamed("BarberServiceCell", owner: self, options: nil)?.first as! BarberServiceCell

        cell.barberImageView.image = arrayOfCellData[indexPath.row].image
        cell.barberServicesLabel.text = arrayOfCellData[indexPath.row].text

        return cell
    }
}

override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {

    if arrayOfCellData[indexPath.row].cell == 1 {
        return 120
    }
    else if arrayOfCellData[indexPath.row].cell == 2 {
        return 120
    }
    else {
        return 120
    }

}
}

您好,试试下面的代码集,我在您的代码中添加了一些额外的更改,这是传递详细信息所必需的,我希望它能解决您的问题。
我只添加了您需要的额外代码

class ListServicesTVC: UITableViewController {

// Add this variable in this class and use it whereever you needed it in this class
var selectedItem: cellData?


override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    // Now maintain the selected data in the local variable we declared
    selectedItem = arrayOfCellData[indexPath.row]

    // Now perform the segue operation
    performSegue(withIdentifier: "VIEW_CONTROLLER_IDENTIFIER_OF_MAP_CLASS", sender: self)
}

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if segue.identifier == "VIEW_CONTROLLER_IDENTIFIER_OF_MAP_CLASS" {
        let destinationVC = segue.destination as? VIEW_CONTROLLER_IDENTIFIER_OF_MAP_CLASS
        destinationVC?.selectedItem = self.selectedItem // Pass the selected item here which we have saved on didSelectRotAt indexPath delegate
    }
}

秒class:

class VIEW_CONTROLLER_IDENTIFIER_OF_MAP_CLASS: UIViewController {


// Add this variable in this class and use it whereever you needed it in this class
var selectedItem: cellData?

只需按照以下步骤操作即可:

  • 在 ViewController Class.
  • 中创建一个 tableView Outlet
  • 创建一个 TableViewCell Class 并注册到 tableView Outlet。
  • 然后,创建一个详细信息ViewController Class(即,当您单击特定单元格时,它应该显示该特定单元格的详细信息)

在 main "ViewController" 中执行以下代码

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {'

@IBOutlet var tableView: UITableView!


var tableData: [String] = ["Apple", "Samsung", "LG"]

// 1 
override func viewDidLoad() {
    super.viewDidLoad()


// Register customCell with tableView Outlet
    let nib = UINib(nibName: "CustomTableViewCell", bundle: nil)
    tableView.registerNib(nib, forCellReuseIdentifier: "cell")

}

// 2
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return self.tableData.count
}

// 3 
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell     {

    let cell: CustomTableViewCell = self.tableView.dequeueReusableCellWithIdentifier("cell") as! CustomTableViewCell
    // injecting data to cell
    cell.lblCompanyName.text = tableData[indexPath.row]
    cell.imgCompanyName.image = UIImage(named: tableData[indexPath.row])

    return cell

}

// 4
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {


    let detailObj=DetailViewController(nibName: "DetailViewController", bundle: nil)
    self.navigationController?.pushViewController(detailObj, animated: true)
    detailObj.nameVar=tableData[indexPath.row]
    detailObj.imgStr=tableData[indexPath.row]

}
  1. 在"CustomTableViewCell"class

class CustomTableViewCell: UITableViewCell {

@IBOutlet var imgCompanyName: UIImageView!
@IBOutlet var lblCompanyName: UILabel!


override func awakeFromNib() {
    super.awakeFromNib()
    // Initialization code
}}
  1. 在 "DetailViewController"

class 详细信息ViewController:用户界面ViewController {

    @IBOutlet var name: UILabel!
    @IBOutlet var image: UIImageView!
     var nameVar:String?
     var imgStr:String?
    override func viewDidLoad() {

        name.text=nameVar
        image.image=UIImage(named: imgStr!)

    super.viewDidLoad()

    // Do any additional setup after loading the view.
}}

代码结束

我想我已经说清楚了,如果您有任何问题,请在下面评论。