gpt4 book ai didi

ios - 如何在 Swift 中同步 tableview 和 searchbar 选择?

转载 作者:行者123 更新时间:2023-11-28 12:50:36 25 4
gpt4 key购买 nike

我有一个包含大约 200 个项目的 TableView ,允许用户进行多项选择,然后用户提交他们的选择。

我想在那个 tableview 的标题中有一个搜索栏,这将使选择过程更容易。

我可以让搜索结果表有多项选择,但是当用户选择和删除其他查询时,选择不会与 TableView 同步,因为两者是不同的表。

如何实现具有搜索功能的多选 TableView 。

例子——

我有包含以下数据的 TableView -

__ Hello
__ Hello World
__ hi There
__ What's Up
__ iOS 9 dev
__ Swift
__ Hey there

我想要这样的东西,当用户在搜索栏中输入“sw”并选择 Swift 并删除搜索查询以执行另一次搜索时。

__ Hello
__ Hello World
__ hi There
__ What's Up
__ iOS 9 dev
√ Swift
__ Hey there

现在如果他/她写“wh”并选择“What's Up”, TableView 选择应该是

__ Hello
__ Hello World
__ hi There
√ What's Up
__ iOS 9 dev
√ Swift
__ Hey there

当用户点击提交按钮时,选择数组应返回为 [3,5]

有人可以帮忙吗?

我是 swift 和 iOS 开发的新手,非常感谢您的帮助。

最佳答案

import UIKit

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate, UISearchBarDelegate {

@IBOutlet var tableView: UITableView!

@IBOutlet var searchBar : UISearchBar!


// third field in array is your index, everything more easy with it

var array = [["Swift", false, 0], ["teste", false, 1], ["linguagem", false, 2], ["objectivec", false, 3]]
var arrayFilter = []


@IBOutlet weak var okbutton: UIButton!


@IBAction func okButton(sender: AnyObject) {
var selection : [Int] = []
for element in self.array {
if element[1] as! Bool {
selection.append(element[2] as! Int)
}
}
print(selection)
}



func searchBar(searchBar: UISearchBar, textDidChange searchText: String) {

// filter array with string that start with searchText

self.arrayFilter = array.filter{
if let pos = ($0[0] as! String).lowercaseString.rangeOfString(searchText.lowercaseString) {
return (pos.startIndex == ($0[0] as! String).startIndex)
}
return false
}
tableView.reloadData()
}

override func viewDidLoad() {
super.viewDidLoad()
searchBar.delegate = self
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}

// MARK: - Table view data source

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return self.searchBar.text == "" ? self.array.count : self.arrayFilter.count

}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath)
let lista = self.searchBar.text == "" ? self.array : self.arrayFilter
cell.textLabel?.text = lista[indexPath.row][0] as? String

// check cell based on second field

cell.accessoryType = lista[indexPath.row][1] as! Bool ? .Checkmark : .None
return cell
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let lista = self.searchBar.text == "" ? self.array : self.arrayFilter
let id = lista[indexPath.row][2] as! Int

// invert the value of checked
self.array[id][1] = !(array[id][1] as! Bool)
self.searchBar.text = ""
tableView.reloadData()
}

}

关于ios - 如何在 Swift 中同步 tableview 和 searchbar 选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36653922/

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