将多个选定的UISwitch tableViewCell行中的数组传递到下一个视图控制器
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中单击两行 tableViewBoolValues 和 tableViewData ,我需要传递两个选定的行 tableViewBoolValues 和 tableViewData 到另一个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)
}
先谢谢了。
答案 0 :(得分:1)
您需要将单元格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。