前提・実現したいこと
SearchBarでユーザー名を入れて該当する名前を絞り込みたい。
チャットアプリにユーザリストページを作り,ログイン済みのユーザーをTableViewに反映、そこにUISearchBar検索機能を実装しました。
ユーザーの名前をSearchBarに入れて絞り込みたいのですが、どうしても上手く絞り込みができず困り果てています。。。。
何卒よろしく御願い致します!
発生している問題・エラーメッセージ
SearchBarに名前を入れても、該当する名前に全く一致のしない名前が表示されます。
データベースから問題はなく呼び出しができていますが、class違いに振り分けられた配列の型に問題があるのか、filterやcontainsを使用したコードの定義に問題があるのかが分かりません。
該当のソースコード
import Foundation
import Firebase
struct UserForChat{
let email: String
let userName : String
let profileImage : String
let postDate : Timestamp
var uid : String?
init(dic:[String:Any]){ self.email = dic["email"] as? String ?? "" self.userName = dic["userName"] as? String ?? "" self.profileImage = dic["profileImage"] as? String ?? "" self.postDate = dic["postDate"] as? Timestamp ?? Timestamp() }
}
該当のソースコード
import UIKit
import Firebase
class UserListViewController:UIViewController{
//上記に定義したClassの配列
private var userForChat = UserForChat
//検索に該当されたユーザー名が入る配列
private var searchResult = Any
private var selectedUser : UserForChat?
private let cellId = "cell"
let db = Firestore.firestore()
let searchBar = UISearchBar()
@IBOutlet weak var userListTableView: UITableView! @IBOutlet weak var startChatButton: UIButton! override func viewDidLoad() { super.viewDidLoad() searchBar.delegate = self searchResult = userForChat setUp() fetchUserInfoFromFirebase() } func setUp(){ userListTableView.tableFooterView = UIView() userListTableView.delegate = self userListTableView.dataSource = self startChatButton.isEnabled = false startChatButton.addTarget(self, action: #selector(tappedChatStartButton), for: .touchUpInside) } @objc func tappedChatStartButton(){ guard let uid = Auth.auth().currentUser?.uid else { return } guard let partnerUid = self.selectedUser?.uid else { return } let members = [uid,partnerUid] let docData = [ "members":members, "latestMessageId":"", "postDate":Timestamp() ] as [String : Any] db.collection("chatRooms").addDocument(data: docData){ (error) in if let error = error{ print("ChatRoomの情報保存に失敗しました") return } self.dismiss(animated: true, completion: nil) } } func fetchUserInfoFromFirebase(){ db.collection("users").getDocuments { (snapshots, error) in if let error = error{ print("FireStoreからの情報取得に失敗しました。") return } self.userForChat.removeAll() snapshots?.documents.forEach({ (snapshot) in let dic = snapshot.data() var user = UserForChat.init(dic: dic) user.uid = snapshot.documentID guard let uid = Auth.auth().currentUser?.uid else { return } if uid == snapshot.documentID{ return } self.userForChat.append(user) self.userListTableView.reloadData() }) } }
}
// MARK: - Search Bar Delegate Methods
extension UserListViewController:UISearchBarDelegate{
func searchBarSearchButtonClicked(_ searchBar: UISearchBar) { view.endEditing(true) searchItems(searchText: searchBar.text! as String) } func searchItems(searchText: String) { // if searchText != "" { searchResult = userForChat.filter { item in item.userName.contains(searchText) } }else{ searchResult = userForChat } userListTableView.reloadData() } func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) { searchItems(searchText: searchText) } func searchBarCancelButtonClicked(_ searchBar: UISearchBar) { searchBar.text = "" view.endEditing(true) searchResult = userForChat userListTableView.reloadData() }
}
//MARK: - UITableViewDelegate,UITableViewDataSource
extension UserListViewController:UITableViewDelegate,UITableViewDataSource{
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? { return "" } func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { searchBar.placeholder = "Chatの相手を検索" searchBar.showsCancelButton = true searchBar.enablesReturnKeyAutomatically = false return searchBar } func numberOfSections(in tableView: UITableView) -> Int { return 1 } func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return searchResult.count } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = userListTableView.dequeueReusableCell(withIdentifier: cellId, for:indexPath) as! UserListTableViewCell cell.user = userForChat[indexPath.row] return cell } func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { startChatButton.isEnabled = true let user = userForChat[indexPath.row] self.selectedUser = user }
}
試したこと
上記以外に配列の定義を変えてみたり、filter、contains周りのコードを変更してみましたが、Value of type 'UserForChat' has no member 'contains'などのエラーになるなど。全く前に進めません。。。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー