• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 带有搜索栏的 UITableView 作为 inputView

[复制链接]
菜鸟教程小白 发表于 2022-12-11 17:03:42 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个文本字段,它在其 inputview 上显示一个 tableview 并在选择时返回值我向 tableview 添加了一个搜索栏,但问题是,当我点击搜索栏时,tableview 会自动关闭和重新打开,这意味着我什至无法单击搜索栏。有什么建议吗?

这里是代码。

class myClass: UIViewController, UITableViewDataSource, UITableViewDelegate, UINavigationBarDelegate, UISearchBarDelegate {

    //the all are in viewdidload
    var tableView: UITableView  =   UITableView()
    tableView = UITableView(frame: UIScreen.mainScreen().bounds, style: UITableViewStyle.Plain)
    tableView.delegate      =   self
    tableView.dataSource    =   self
    tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")

    let navigationBar = UINavigationBar(frame: CGRectMake(0, 0, self.view.frame.size.width, 44))
    let navigationItem = UINavigationItem()
    var searchBar:UISearchBar = UISearchBar()
    searchBar.searchBarStyle = UISearchBarStyle.Prominent
    searchBar.placeholder = " Search..."
    searchBar.sizeToFit()
    searchBar.translucent = false
    searchBar.backgroundImage = UIImage()
    searchBar.delegate = self
    navigationBar.items = [navigationItem]

    tableView.tableHeaderView = navigationBar

    toTextField.inputView = self.tableView

}



Best Answer-推荐答案


单击 Text field 后,您的文本字段将成为第一响应者。既然你提到了 toTextField.inputView = self.tableView;这样你的表格 View 就会出现。

点击搜索栏后,立即搜索栏即为第一响应者。由于 TextFIeld 不再是第一响应者,因此表格 View 消失。

一种解决方案可以是: 不要将表格 View 作为文本字段的输入 View 。那是 : //toTextField.inputView = self.tableView

相反,您可以使用 TextField 的委托(delegate)方法之一呈现表格 View Controller :

 func textFieldDidBeginEditing(textField: UITextField)   {
    let test : UITableViewController = UITableViewController.init(style: UITableViewStyle.Plain)
    test.tableView = self.tableView
    let testNav: UINavigationController = UINavigationController(rootViewController: test);
    self.presentViewController(testNav, animated: true, completion: nil)
}

关于ios - 带有搜索栏的 UITableView 作为 inputView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38514694/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap