gpt4 book ai didi

ios - cellForRowAt 在 childTableView 中不起作用

转载 作者:行者123 更新时间:2023-11-29 05:11:51 24 4
gpt4 key购买 nike

我是一名入门级 swift 开发人员,我正在个人应用程序中工作,但我的“tableViewController”遇到了问题。

我有一个第一个表格 View ,我从 API 中获取一些事件,然后我想做的是每当我选择一个事件时显示一个“detailViewController”。到目前为止,一切看起来都很完美,但我的问题是我的“detailsviewcontroller”有一个事件的图像、标题......然后是一个集成的“tableview”来显示详细信息。此时,numberOfRowsInSection 函数可以工作,但从未调用 cellForRowAt 来填充集成的表格 View 。有什么帮助吗?我希望我的解释很清楚

这是“childtableview”的代码,我想在其中显示事件详细信息(我使用数组字符只是为了尝试:

import UIKit
import SwiftyJSON

class ChildDetailsViewController: UIViewController, UITableViewDelegate {
var event: JSON?
let detailsTableView = UITableView()
var characters = ["test1", "test2", "test3", "test4"]
override func loadView() {
print("details")
super.loadView()
view.addSubview(detailsTableView)
detailsTableView.translatesAutoresizingMaskIntoConstraints = false
detailsTableView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
detailsTableView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
detailsTableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
detailsTableView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
detailsTableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
detailsTableView.dataSource = self
detailsTableView.delegate = self
detailsTableView.reloadData()
}
}

extension ChildDetailsViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
//this insctruction does print 4
print(characters.count)
//but it doesn't return 4 cells in the tableview
return characters.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
print(characters[indexPath.row])
cell.textLabel?.text = characters[indexPath.row]
return cell
}
}

这里是包含图像和标题以及子 TableView 的detailsViewController的代码:

import UIKit
import SwiftyJSON

class EventDetailsViewController: UIViewController {
var event : JSON?

@IBOutlet weak var segmentedController: UISegmentedControl!
@IBOutlet weak var ticketsView: UIView!
@IBOutlet weak var locationView: UIView!
@IBOutlet weak var detailsView: UIView!
@IBOutlet weak var eventImage: UIImageView!
@IBOutlet weak var eventTitle: UILabel!
let newView = UIView()
let childDetails = ChildDetailsViewController()
var views : [UIView]!

override func viewDidLoad() {
filltheImageAndTile()
// add new view to the main view
super.viewDidLoad()
view.addSubview(newView)

//locate it under the event image and the segnented controller
newView.translatesAutoresizingMaskIntoConstraints = false
newView.centerXAnchor.constraint(equalTo: view.centerXAnchor).isActive = true
newView.topAnchor.constraint(equalTo: segmentedController.bottomAnchor, constant: 25).isActive = true
newView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true
newView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true

views = [UIView]()
views.append(ChildDetailsViewController().view)
views.append(ChildLocationViewController().view)

for itemView in views {
newView.addSubview(itemView)
}
newView.bringSubviewToFront(ChildDetailsViewController().view)
}

@IBAction func segmentedControlOptionChanged(_ sender: UISegmentedControl) {
newView.bringSubviewToFront(views[sender.selectedSegmentIndex])
}

@IBAction func backButtonClicked(_ sender: UIBarButtonItem) {
self.navigationController?.dismiss(animated: true)
}
}

最佳答案

问题是您正在创建 ChildDetailsViewController 的实例并将其 View 添加到 views 数组中,但 ChildDetailsViewController 的实例从未保存任何地方,并且从未将其添加到父 View Controller 中。和 newView.bringSubviewToFront(ChildDetailsViewController().view) 这行代码不会执行任何操作,因为您正在创建一个新实例并将其 View 置于前面,但它从未被添加到 super View 中的任何位置

views = [UIView]()
views.append(ChildDetailsViewController().view)//this shouldn't be like this
views.append(ChildLocationViewController().view)

for itemView in views {
newView.addSubview(itemView)
}
newView.bringSubviewToFront(ChildDetailsViewController().view)//this shouldn't be like this

您已经创建了一个实例childDetails,您应该像下面这样使用它

childDetails.willMove(toParent: self)
self.addChild(childDetails)

let locationViewController = ChildLocationViewController()
locationViewController.willMove(toParent: self)
self.addChild(locationViewController)

views = [UIView]()
views.append(childDetails.view)
views.append(locationViewController.view)

for itemView in views {
newView.addSubview(itemView)
}
childDetails.didMove(toParent: self)
locationViewController.didMove(toParent: self)
newView.bringSubviewToFront(childDetails.view)

关于ios - cellForRowAt 在 childTableView 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59617342/

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