作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
将多个选定的 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 中单击两行 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)
}
提前致谢..
最佳答案
您需要使用数据数组保存单元格的 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/
我是一名优秀的程序员,十分优秀!