gpt4 book ai didi

ios - swift : Pass TableViewCell text to new ViewController's cell

转载 作者:行者123 更新时间:2023-11-29 02:13:08 25 4
gpt4 key购买 nike

如何使用在 tableVC 中填充的数组将相同的文本从 tableVC 传递到详细信息 tableVC。

它在 tableVC 中工作,但没有数据传递到 detailVC。

他们共享一个 tableviewcell。

class TableViewCell: UITableViewCell {  
@IBOutlet var img: UIImageView!
@IBOutlet var title: UILabel!
}

表VC

class TableViewController: UITableViewController {

var thecourseName = [String]()

override func viewDidLoad() {
super.viewDidLoad()

thecourseName = ["course 1 ","course 2 ","course 3 "]
theimg = [UIImage(named: "109.png")!,UIImage(named: "110.png")!]

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! TableViewCell

// Configure the cell...

cell.title.text = thecourseName[indexPath.row]
return cell
}


override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if ( segue == "toInfo") {
var text = self.tableView.indexPathForSelectedRow()
var detailsVC: DetalisTableViewController = segue.destinationViewController as! DetalisTableViewController
detailsVC.courseName = thecourseName

}
}

细节VC

import UIKit

class DetalisTableViewController: UITableViewController {

var courseName = [String]()

@IBOutlet var passedCourse: UILabel!

override func viewDidLoad() {
super.viewDidLoad()


override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! TableViewCell

// Configure the cell...

cell.title.text = courseName[indexPath.row]

return cell
}

Storyboard http://s18.postimg.org/mwkw5hf1l/image.png

最佳答案

您的问题是您没有将有关所选单元格内容的任何信息传递给 detailViewController。改为这样做:

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if ( segue.identifier == "toInfo") {
if let indexPath = tableView.indexPathForCell(sender as! UITableViewCell) {
var detailsVC = segue.destinationViewController as! DetalisTableViewController
println(thecourseName[indexPath.row])
println(indexPath.row)
detailsVC.courseName = thecourseName[indexPath.row]
}
}
}

现在不是将整个类(class)名称数组传递给 DetailsTableViewController,您的变量 courseName 只包含一个:

var courseName: String = ""

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! TableViewCell
cell.title.text = courseName
return cell
}

关于ios - swift : Pass TableViewCell text to new ViewController's cell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29063979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com