発生している問題・エラーメッセージ
tableViewにsearchBarを設定してnavigationbarにaddボタンを設置しています。
検索状態でaddボタンを押して(このタイミングでエラー1)、その後キャンセルボタンを押すと(このタイミングでエラー2)クラッシュしてしまいます。
以下のようなエラー内容が出ました。
-
which is already presenting (null)
-
unrecognized selector sent to instance
-
unrecognized selector sent to instanceは
addボタンの
let addButton = UIBarButtonItem(barButtonSystemItem: .add, target: self, action:#selector(onAddTapped(_:)))において、
ここを参考にすると、問題ないはずなのですが、
(https://teratail.com/questions/192136)
- which is already presenting (null)が分かりません。
alertがすでに表示されているという意味だと思うのですが、、、、
試しに
self.present(alert, animated: true, completion: nil)
の部分をコメントアウトすると上記二つのエラーは消えたので、ここが原因だと思うのですが、この先どうすれば良いのか分かりません。。。
対処法知っておられる方いましたら、教えてください。
よろしくお願いします。
swift
1import UIKit 2class ViewController: UIViewController { 3 4 @IBOutlet weak var tableView: UITableView! 5 var searchController: UISearchController! 6 var words = [String]() 7 var searchResults:[String] = [] 8 9 override func viewDidLoad() { 10 super.viewDidLoad() 11 //高さ自動調整 12 tableView.rowHeight = UITableView.automaticDimension 13 //余分なセルを非表示 14 self.tableView.tableFooterView = UIView() 15 navigationItem.leftBarButtonItem = editButtonItem 16 let addButton = UIBarButtonItem(barButtonSystemItem: .add, target: self, action:#selector(onAddTapped(_:))) 17 navigationItem.rightBarButtonItem = addButton 18 19 setupSearchBar() 20 } 21 22 func setupSearchBar() { 23 searchController = UISearchController(searchResultsController: nil) 24 searchController.searchResultsUpdater = self 25 searchController.searchBar.delegate = self 26 27 searchController.searchBar.frame = CGRect(x: 0, y: 0, width: 0, height: 60) 28 //searchController.searchBar.sizeToFit() 29 searchController.searchBar.placeholder = "WAROTA" 30 searchController.searchBar.tintColor = UIColor.red 31 searchController.searchBar.keyboardType = UIKeyboardType.default 32 33 searchController.dimsBackgroundDuringPresentation = false 34 searchController.hidesNavigationBarDuringPresentation = false 35 36 tableView.tableHeaderView = searchController.searchBar 37 } 38 39 @objc func onAddTapped(_ sender: Any) { 40 let alert = UIAlertController(title: "単語を登録", message: "Enter Chinese",preferredStyle: .alert) 41 alert.addTextField {(ChineseTH) in ChineseTH.placeholder = "words" } 42 let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil) 43 let okAction = UIAlertAction(title: "Add", style: .default) { (_) in 44 45 guard let word = alert.textFields?.first?.text, word.count > 0 else { return } 46 self.insertCellRow(word) 47 48 } 49 50 alert.addAction(cancelAction) 51 alert.addAction(okAction) 52 53 self.present(alert, animated: true, completion: nil) 54 55 } 56 57 func insertCellRow(_ word: String){ 58 words.insert(word, at: 0) 59 let indexPath = IndexPath(row: 0, section: 0)//初期化 60 tableView.insertRows(at: [indexPath], with: .automatic)//新しいセルを挿入しているだけ 61 62 } 63 64} 65 66// MARK: - tabeleView 67extension ViewController: UITableViewDelegate, UITableViewDataSource { 68 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 69 return words.count 70 } 71 72 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 73 let cell = tableView.dequeueReusableCell(withIdentifier: "Cell") 74 let word = words[indexPath.row] 75 cell?.textLabel?.text = word 76 return cell! 77 } 78} 79 80// MARK: - searchBar 81extension ViewController: UISearchResultsUpdating { 82 func updateSearchResults(for searchController: UISearchController) { 83 self.searchResults = words.filter{ 84 $0.lowercased().contains(searchController.searchBar.text!.lowercased()) 85 } 86 } 87} 88 89// MARK: - searchBar 90extension ViewController: UISearchBarDelegate { 91 92 func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) { 93 } 94 95 func searchBarCancelButtonClicked(_ searchBar: UISearchBar) { 96 searchBar.text = "" 97 tableView.reloadData() 98 } 99 100 func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) { 101 } 102} 103
補足情報(FW/ツールのバージョンなど)
xcode11.1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。