gpt4 book ai didi

ios - 如何将多个选定的 UISwitch tableViewCell 行中的数组传递到下一个 View Controller

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

将多个选定的 UISwitch tableViewCell 行中的数组传递到下一个 View Controller

var tableViewData = ["Some1", "Some2","Some3", "Some4"]
var tableViewBoolValues = [false, false, false, false]

我正在使用 2 个数组在 TableView 中显示
MyTableView 代码在这里:-

//MARK: - TableView
extension CategoryListViewController : UITableViewDelegate, UITableViewDataSource, CategoryListDelegate {
func didTap(on switchState: Bool, at index: Int) {
tableViewBoolValues[index] = switchState
tableview.reloadData()
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return tableViewData.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CategoryListTableViewCell") as? CategoryListTableViewCell
cell?.categoryLabel?.text = tableViewData[indexPath.row]
cell?.switchButton.isOn = tableViewBoolValues[indexPath.row]
cell?.categoryListDelegate = (self as CategoryListDelegate)
cell?.tag = indexPath.row
return (cell)!
}
}

UITableViewCell 代码在这里:-

import UIKit

@objc protocol CategoryListDelegate: NSObjectProtocol{
func didTap(on switchState:Bool, at index: Int)
}

class CategoryListTableViewCell: UITableViewCell {

weak var categoryListDelegate: CategoryListDelegate?
var indexPath : IndexPath?
@IBOutlet weak var categoryLabel: UILabel!
@IBOutlet weak var switchButton: UISwitch!

override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}

@IBAction func switchButtonTapped(_ sender: UISwitch) {

if (self.categoryListDelegate?.responds(to: #selector(CategoryListDelegate.didTap(on:at:))))! {
self.categoryListDelegate?.didTap(on:sender.isOn, at: self.tag)
if switchButton.tag == indexPath?.row{
}
}
}
}

例如,我在 TableViewCell 中单击两行 tableViewBool​​ValuestableViewData,我需要传递这两个选定的行 tableViewBool​​ValuestableViewData 到另一个 ViewController

@IBAction func nextVCButtonTapped(_ sender: Any) {

let storyBoard : UIStoryboard = UIStoryboard(name: "main", bundle:nil)
let vc = storyBoard.instantiateViewController(withIdentifier: "AnotherViewController") as! AnotherViewControlle
let selectedRows = tableview.indexPathsForSelectedRows
// I got struct here
self.navigationController?.pushViewController(vc, animated: true)
}

提前致谢..

最佳答案

您需要使用数据数组保存单元格的 UISwitch 的开关状态。我会为表数据使用单个字典(或对象)数组,并添加一个“isSelected”键来跟踪 UISwitch 状态。像这样的东西:

    var dataObject1 = ["data":"Some1", "boolValue":false, "isSelected": false] as [String : Any]
var dataObject2 = ["data":"Some2", "boolValue":false, "isSelected": false] as [String : Any]
var dataObject3 = ["data":"Some3", "boolValue":false, "isSelected": false] as [String : Any]
var tableViewData = [dataObject1, dataObject2, dataObject3]

cellForRow() 中,将 UISwitch 状态设置为“isSelected”键。在 switchButtonTapped() 中,将“isSelected”键设置为 UISwitch 状态。在 nextVCButtonTapped() 中创建包含 dataObjects 的数组,其中“isSelected”= true。将此数组传递给新创建的 VC。

关于ios - 如何将多个选定的 UISwitch tableViewCell 行中的数组传递到下一个 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54672928/

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