【问题标题】:Programatically adding UITextField above UITableView以编程方式在 UITableView 上方添加 UITextField
【发布时间】:2021-09-27 22:52:49
【问题描述】:

我正在尝试使用 MusicBrainz API 创建一个搜索应用程序,该 API 将返回与用户输入的搜索词匹配的 JSON 数据。

这是我目前的 UI:

import UIKit
import WebKit

class ArtistListViewController: UIViewController{
 
    let tableView = UITableView()
    var safeArea: UILayoutGuide!
    var artists: [Artists]?
    
    let textField = UITextField()
    var searchTerm = "Search"
    
    var webView: WKWebView!
 
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
        
        safeArea = view.layoutMarginsGuide
        
        searchBar()
        setUpTable()
        setUpNavigation()
  
    }
    
    func searchBar(){
        view.addSubview(textField)
        
        textField.placeholder = "Search"
        textField.frame = CGRect(x: 10,y: 200,width: 300.0,height: 30.0)
        
        textField.borderStyle = UITextField.BorderStyle.line

        textField.translatesAutoresizingMaskIntoConstraints = false
        
        
        //Layout Configs
        textField.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
        
        textField.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
        textField.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
        
        textField.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true

 }
    
    func setUpTable(){
        view.addSubview(tableView)
        
        ArtistSearchModelData().loadArtists(searchTerm: "Adele"){ [weak self] (artists) in
              self?.artists = artists
              
              DispatchQueue.main.async{
                self?.tableView.reloadData()
              }
        }
        
        //populate with data
        tableView.delegate = self
        tableView.dataSource = self
        tableView.register(TableViewCell.self, forCellReuseIdentifier: "cell")
        
        
        //turn off autoresizing
        tableView.translatesAutoresizingMaskIntoConstraints = false
        
        //Layout Configs
        tableView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
        tableView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
        tableView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
        tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
       
    }
    
    func setUpNavigation(){
        self.navigationItem.title = "Artists"
        self.navigationController?.navigationBar.barTintColor = .white
        self.navigationController?.navigationBar.isTranslucent = false
        self.navigationController?.navigationBar.titleTextAttributes = [
            NSAttributedString.Key.foregroundColor: UIColor.orange,
            NSAttributedString.Key.font: UIFont(name: "Arial-BoldMT", size: 30)
        ]
    }

}

这是我的用户界面的样子:

如您所见,我的搜索栏完全不见了,我不知道如何呈现它。

我尝试使用 UIStackView 但得到了相同的结果。

我尝试在互联网上搜索并找到类似的解决方案,但无法让它们中的任何一个起作用。

将 textField 和 tableView 添加到自定义子视图也不会呈现任何内容,可能是因为它们是函数?我是不是走错路了?

感谢任何帮助!

【问题讨论】:

  • 您首先向视图添加一个文本字段。然后向视图中添加一个表视图。那么你期待什么?你用 insertSubview(_, at: ) 改变出现的顺序吗?

标签: ios swift uitableview uikit uitextfield


【解决方案1】:

您将文本字段限制在视图的顶部:

textField.topAnchor.constraint(equalTo: view.topAnchor).isActive = true

然后,您将表格视图限制在视图的顶部:

tableView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true

所以你的表格视图覆盖了你的文本字段。

你可以这样做:

tableView.topAnchor.constraint(equalTo: textField.bottomAnchor).isActive = true

将表格视图的顶部限制在文本字段的底部。

附带说明,您应该限制在视图的安全区域 ...而不是视图本身:

textField.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor).isActive = true

编辑

这是您的类进行了上述修改(请注意,我注释掉了我无法访问的内容,例如您的 Artist 特定代码):

class ArtistListViewController: UIViewController{
    
    let tableView = UITableView()
    var safeArea: UILayoutGuide!
    //var artists: [Artists]?
    
    let textField = UITextField()
    var searchTerm = "Search"
    
    //var webView: WKWebView!
    
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
        
        safeArea = view.safeAreaLayoutGuide
        
        searchBar()
        setUpTable()
        setUpNavigation()
        
    }
    
    func searchBar(){
        
        view.addSubview(textField)
        
        textField.placeholder = "Search"
        
        // not needed
        //textField.frame = CGRect(x: 10,y: 200,width: 300.0,height: 30.0)
        
        textField.borderStyle = UITextField.BorderStyle.line
        
        textField.translatesAutoresizingMaskIntoConstraints = false
        
        
        //Layout Configs
        
        // constrain Top to safeArea Top
        textField.topAnchor.constraint(equalTo: safeArea.topAnchor).isActive = true
        
        textField.leftAnchor.constraint(equalTo: safeArea.leftAnchor).isActive = true
        textField.rightAnchor.constraint(equalTo: safeArea.rightAnchor).isActive = true
        
        // don't constrain the bottom
        //textField.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
        
    }
    
    func setUpTable(){
        view.addSubview(tableView)
        
//      ArtistSearchModelData().loadArtists(searchTerm: "Adele"){ [weak self] (artists) in
//          self?.artists = artists
//
//          DispatchQueue.main.async{
//              self?.tableView.reloadData()
//          }
//      }
//
//      //populate with data
//      tableView.delegate = self
//      tableView.dataSource = self
//      tableView.register(TableViewCell.self, forCellReuseIdentifier: "cell")
        
        
        //turn off autoresizing
        tableView.translatesAutoresizingMaskIntoConstraints = false
        
        //Layout Configs
        
        // constrain Top to textField Bottom
        tableView.topAnchor.constraint(equalTo: textField.bottomAnchor).isActive = true
        
        tableView.leftAnchor.constraint(equalTo: safeArea.leftAnchor).isActive = true
        tableView.rightAnchor.constraint(equalTo: safeArea.rightAnchor).isActive = true
        tableView.bottomAnchor.constraint(equalTo: safeArea.bottomAnchor).isActive = true
        
    }
    
    func setUpNavigation(){
        self.navigationItem.title = "Artists"
        self.navigationController?.navigationBar.barTintColor = .white
        self.navigationController?.navigationBar.isTranslucent = false
        self.navigationController?.navigationBar.titleTextAttributes = [
            NSAttributedString.Key.foregroundColor: UIColor.orange,
            NSAttributedString.Key.font: UIFont(name: "Arial-BoldMT", size: 30)
        ]
    }
    
}

如果您按原样运行该代码,您应该将搜索文本字段置于(空)tableView 上方。

如果您随后取消注释您的艺术家特定代码,它应该可以正常工作。

【讨论】:

  • 当我尝试这个时,我得到了这个错误:线程 1:“无法使用锚激活约束 <0x600000d62080><0x600000d7f9c0>
【解决方案2】:

更新约束,它将起作用:

 //Layout Configs
        textField.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
        textField.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
        textField.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
        textField.heightAnchor.constraint(equalToConstant: 30).isActive = true



  tableView.topAnchor.constraint(equalTo: textField.bottomAnchor).isActive = true
        tableView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
        tableView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
        tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true

【讨论】:

    【解决方案3】:

    无法准确找出您使用 UIViewController 而不是 UITableViewController 的原因,所以这是第二个的解决方案...

    对于这些类型的任务,除了嵌入 UITextField,还有一个更简单、即用的解决方案,称为 UISearchController-

    使用搜索控制器提供标准的搜索体验 另一个视图控制器的内容。当用户与 UISearchBar,搜索控制器坐标与搜索结果 控制器来显示搜索结果。

    import UIKit
    
    class TableViewController: UITableViewController, UISearchResultsUpdating, UISearchControllerDelegate {
        
        override func viewDidLoad() {
            super.viewDidLoad()
            createSearchController()
        }
    
        // MARK: - Table view data source
        
        let items = ["item1", "item2", "item3", "item4"]
    
        override func numberOfSections(in tableView: UITableView) -> Int { return 1 }
        override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return items.count }
        
        override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
            let cell = tableView.dequeueReusableCell(withIdentifier: "identifier", for: indexPath)
            cell.textLabel?.text = items[indexPath.row]
            cell.detailTextLabel?.text = items[indexPath.row] + " detail"
            return cell
        }
        
        // MARK: - Search controller
        
        private let searchController = UISearchController(searchResultsController: nil)
        func createSearchController(){
            searchController.searchResultsUpdater = self
            searchController.delegate = self
            tableView.tableHeaderView = searchController.searchBar
        }
        
        func updateSearchResults(for searchController: UISearchController) {
            // Do something with it
            let searchedText = searchController.searchBar.text
        }
    }
    

    最后是这样的。

    【讨论】:

    • 我有一个异常说 - 线程 1:“无法将自己添加为子视图”。
    • 您还应该将您的故事板转换为 UITableViewController
    • 我没有使用故事板,我的 UI 仅通过代码完成。那我该如何过渡呢?
    • 不使用情节提要是什么意思?您的应用中有一个 Main.storyboard 文件。您可以选择通过代码布局约束,但您也在使用故事板... ArtistListViewController 通过故事板连接到 ViewController,您应该将该视图更改为 UITableViewController 并将其相应地连接到您的代码
    【解决方案4】:

    当使用调用两个方法searchBar()setUpTable() - 你的tableView 将在searchBar。我的意思是您选择调用此方法的顺序

    当你像在顶部的某个单元格那样调用它时,任何方式都会隐藏在 searchBar 下。

    你可以做这个约束

        textField.translatesAutoresizingMaskIntoConstraints = false
        textField.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
        textField.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
        textField.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
    
    
        tableView.translatesAutoresizingMaskIntoConstraints = false
        tableView.topAnchor.constraint(equalTo: textField.bottomAnchor).isActive = true
        tableView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
        tableView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
        tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
    

    或者您可以将您的搜索栏添加到navigationBar

        let searchController = UISearchController(searchResultsController: nil)
        navigationItem.searchController = searchController
        navigationItem.searchController?.searchBar.delegate = self
        navigationItem.searchController?.obscuresBackgroundDuringPresentation = false
        navigationItem.searchController?.hidesNavigationBarDuringPresentation = false
        navigationItem.searchController?.searchBar.placeholder = "Enter text here..."
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2019-07-25
      • 1970-01-01
      • 1970-01-01
      • 2011-10-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多