基本上,我有一个表视图控制器,其中包含从JSON数据填充的单元格。当用户选择单元格时,应打开另一个视图控制器,其中包含有关所选单元格的更多信息。
我正在使用用户默认值传递有关所选单元格的信息,以及有关POST请求中检索数据所需的信息。
问题是当选择一个单元格时,有时会出现错误,发现意外的错误。
通常会在以下情况下发生:选择了单元格,显示了不同的视图控制器,我回到表格视图并选择了相同的单元格。
我认为问题与dequeueReusableCell
有关,因为我注意到用fetchJSON
重新加载viewDidAppear中的表视图数据会降低发现错误的机会。
如果不进行此更改,该错误将一直发生。
import UIKit
class ScheduleCell: UITableViewCell {
@IBOutlet weak var cellStructure: UIView!
@IBOutlet weak var testingCell: UILabel!
@IBOutlet weak var pickupLabel: UILabel!
@IBOutlet weak var deliveryLabel: UILabel!
}
class ScheduleTableViewController: UITableViewController {
@IBOutlet weak var dateLabel: UIBarButtonItem!
var driverName = UserDefaults.standard.string(forKey: "name")!
var structure = [ScheduleStructure]()
var pickupTitle = ""
override func viewDidLoad() {
super.viewDidLoad()
fetchJSON()
let refreshControl = UIRefreshControl()
refreshControl.addTarget(self, action: #selector(doSomething), for: .valueChanged)
tableView.refreshControl = refreshControl
}
private func fetchJSON() {
guard let url = URL(string: "https://example/example/example.php"),
let value = driverName.addingPercentEncoding(withAllowedCharacters: .urlQueryValueAllowed)
else { return }
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.httpBody = "driverName=\(value)".data(using: .utf8)
URLSession.shared.dataTask(with: request) { data, _, error in
guard let data = data else { return }
do {
self.structure = try JSONDecoder().decode([ScheduleStructure].self,from:data)
DispatchQueue.main.async {
self.tableView.reloadData()
}
}
catch {
print(error)
}
}.resume()
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return structure.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "customerID", for: indexPath) as! ScheduleCell
cell.textLabel?.font = .boldSystemFont(ofSize: 18)
cell.textLabel?.textColor = UIColor.clear
let portfolio = structure[indexPath.row]
//cell.textLabel?.text = portfolio.customer
cell.pickupLabel.layer.cornerRadius = 10
cell.pickupLabel.clipsToBounds = true
return cell
}
override func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
return self.tableView(tableView, heightForRowAt: indexPath)
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let cell = tableView.dequeueReusableCell(withIdentifier: "customerID", for: indexPath) as! ScheduleCell
//cell.cellStructure.layer.cornerRadius = 50
let portfolio = structure[indexPath.row]
let controller = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "deliveryController")
pickupTitle = portfolio.customer
UserDefaults.standard.set(pickupTitle, forKey: "TitleText")
controller.navigationItem.title = pickupTitle
let navigationController = UINavigationController(rootViewController: controller)
self.present(navigationController, animated: true, completion: nil)
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
}
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 160.0
}
override func viewWillAppear(_ animated: Bool) {
fetchJSON()
}
}
答案 0 :(得分:0)
这可能是因为当您返回视图时,tableView需要时间来重新加载其数据,这就是为什么您得到零的原因。 在fetchJSON()中尝试一下
do {
DispatchQueue.main.async {
self.structure = try JSONDecoder().decode([ScheduleStructure].self,from:data)
self.tableView.reloadData()
}
}