前提・実現したいこと
入力された文字をもとに配列を検索し一致するものをテーブルに表示させます。
表示されたセルをタップするとその検索結果の値を渡しつつ画面遷移します。
発生している問題・エラーメッセージ
エラーメッセージ
該当のソースコード
Swift
1import UIKit 2 3class SearchViewController: UIViewController,UISearchBarDelegate, UITableViewDelegate, UITableViewDataSource { 4 5 @IBOutlet weak var tableView: UITableView! 6 private var items: NSArray = ["a","b","c"] 7 private var result: NSArray = [] 8 private var outputitems: NSArray = [] 9 10 @IBOutlet weak var searchField: UISearchBar! 11 12 override func viewDidLoad() { 13 super.viewDidLoad() 14 // Do any additional setup after loading the view. 15 outputitems = items 16 } 17 18 func searchItems(searchText: String){ 19 if searchText != ""{ 20 result = items.filter {item in 21 return (item as! String).contains(searchText) 22 } as NSArray 23 }else{ 24 result = items 25 } 26 } 27 28 func searchBarSearchButtonClicked(_ searchBar: UISearchBar) { 29 searchItems(searchText: searchBar.text! as String) 30 print(result) 31 outputitems = result 32 tableView.reloadData() 33 } 34 35 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 36 return self.outputitems.count 37 } 38 39 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 40 let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for:indexPath as IndexPath) 41 cell.textLabel?.text = self.outputitems[indexPath.row] as? String 42 return cell 43 } 44 45 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 46 tableView.deselectRow(at: indexPath, animated: true) 47 let VC = ViewController() 48 VC.getText = result 49 self.navigationController?.popViewController(animated: true) 50 } 51} 52
試したこと
ぐちゃぐちゃですが配列から文字を取り出し、セルに表示させてみました。しかし検索結果を値渡しする方法がわからず、質問させていただきました。
補足情報(FW/ツールのバージョンなど)
XCode Version 11.2.1
追加いたします。
検索後、絞り込まれたセルをタップすると選択されたセルの内容を元ページに値渡ししたいと思っております。
例)検索後セルが絞り込まれ、そのうちの「A」セルがタップされる→元画面へ遷移し、「Aがタップされました」と表示