对不起,我的英语不好。
我想要这样:当某人单击某个单元格时,它将在另一个视图控制器中打开。
我以编程方式创建了表格视图。
import UIKit
class BibleBooksViewController: UIViewController, UITableViewDelegate,
UITableViewDataSource {
private let myArray: NSArray = ["Gênesis", "Êxodo", "Levitico"]
private var myTableView: UITableView!
var bibleArray = BibleBooksMock().booksArray
override func viewDidLoad() {
super.viewDidLoad()
let barHeight: CGFloat =
UIApplication.shared.statusBarFrame.size.height
let displayWidth: CGFloat = self.view.frame.width
let displayHeight: CGFloat = self.view.frame.height
myTableView = UITableView(frame: CGRect(x: 0, y: barHeight, width:
displayWidth, height: displayHeight - barHeight))
myTableView.register(UITableViewCell.self, forCellReuseIdentifier:
"MyCell")
myTableView.dataSource = self
myTableView.delegate = self
self.view.addSubview(myTableView)
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section:
Int) -> Int {
return bibleArray.count
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath:
IndexPath) -> CGFloat {
return 70
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath)
-> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "MyCell", for:
indexPath as IndexPath)
cell.textLabel!.text = "\(bibleArray[indexPath.row].title)"
return cell
}
}
输出是这样的:
iOS版本为12.1 快速版本是4.2
答案 0 :(得分:2)
当我们单击单元格时,在tableview didselect方法中使用此代码
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let vc = self.storyboard?.instantiateViewController(withIdentifier: "DetailViewController") as! DetailViewController
vc.strText = "\(arrData[indexPath.row])"
self.present(vc, animated: true, completion: nil)
OR
self.navigationController?.pushViewController(vc, animated: true)
}
当我们必须传递数据或导航时,ViewController是DetailViewController
class DetailViewController: UIViewController {
var strText: String?
override func viewDidLoad() {
super.viewDidLoad()
yourlabel.text = strText
}
}
在我的代码中,我已将DetailViewController用作情节提要ID,因此请像在SS中那样在情节提要中进行设置。
您可以在youtube上查看我的视频:- https://www.youtube.com/watch?v=4MOiU_Qop-0
答案 1 :(得分:1)
将此添加到BibleBooksViewController
:
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let chapter = bibleArray[indexPath.row]
var vc = ChapterViewController()
vc.chapterName = chapter.title
navigationController?.pushViewController(vc, animated: true)
}
并定义此控制器:
class ChapterViewController: UIViewController {
var chapterName: String?
override func viewDidLoad() {
super.viewDidLoad()
title = chapterName
view.backgroundColor = UIColor.white
}
}
有关tableView(_:didSelectRowAt:)
here的更多信息。