ios - 为什么我的 tableView 变量返回 nil?

标签 ios swift uitableview cocoa-touch

我在我的项目中使用了 UISearchController。我通过为 init(searchResultsController) 方法提供一个管理 tableView 的 UIViewController 对象来启动搜索 Controller 。这个对象的代码是:

import UIKit

class ResultsTableViewController: UIViewController {

@IBOutlet weak var tableView: UITableView!
var list: [String] = []

 override func viewDidLoad() {
     super.viewDidLoad()
 }
}

extension ResultsTableViewController: UITableViewDelegate{}

extension ResultsTableViewController: UITableViewDataSource{
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return list.count
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    var cell = tableView.dequeueReusableCellWithIdentifier("Cell")

     if cell == nil {
         cell = UITableViewCell(style: .Default, reuseIdentifier: "Cell")
         cell?.textLabel?.text = list[indexPath.row]
      } else {
         cell?.textLabel!.text = list[indexPath.row]
      }
       return cell!
     }
}

此外,当我尝试从 updateSearchResultsForSearchController(searchController: UISearchController) 方法访问 resultsTableViewController.tableViewUISearchResultsUpdating 协议(protocol)来填充它的“列表”数组,它给了我一个错误。 tableView 返回 nil,应用程序崩溃。我想指出的是,我已经将 tableView 的数据源、委托(delegate)和 IBOutlet 变量连接到适当的 View Controller 。我希望有人向我解释为什么会这样?我想我对 ResultsTableViewController 的生命周期有误解。最后,当我从 Storyboard中拖出一个 TableViewController 而不是从头开始制作我自己的 TableView Controller 时,一切都顺利进行,没有任何错误!你能帮我理解这是怎么回事吗?

编辑:我的初始 View Controller 的代码是:

import UIKit

class FirstViewController: UIViewController {

    @IBOutlet weak var tableView: UITableView!
    var resultsTableViewController  = ResultsTableViewController()
    var searchController: UISearchController!
    let list  = ["Apple", "Orange", "Bananas","Kiwi", "Cucumbers", "Apricot","Peach", "Cherry", "Mangosteen","Strawberry", "Blueberry", "Raspberry","Watermelon", "Persimmon", "plums","Papaya", "Jackfruit", "Lichi"]
    var filteredList: [String]!


    override func viewDidLoad() {
        super.viewDidLoad()
        setUpSearchController()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }

    func setUpSearchController(){
        searchController = UISearchController(searchResultsController: resultsTableViewController)
        searchController.dimsBackgroundDuringPresentation = false
        searchController.searchResultsUpdater = self
        searchController.hidesNavigationBarDuringPresentation = true
        tableView.tableHeaderView = searchController.searchBar
        tableView.scrollToRowAtIndexPath(NSIndexPath(forRow: 0, inSection: 0), atScrollPosition: UITableViewScrollPosition.Top, animated: false)
    }

}

extension FirstViewController: UITableViewDelegate, UITableViewDataSource{

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

       return list.count
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

        var cell = tableView.dequeueReusableCellWithIdentifier("cell")
        if cell == nil {
            cell = UITableViewCell(style: .Default, reuseIdentifier: "cell")
            cell?.textLabel?.text = list[indexPath.row]
        }else {
            cell?.textLabel?.text = list[indexPath.row]
        }
        return cell!
    }

}

extension FirstViewController: UISearchResultsUpdating{

    func updateSearchResultsForSearchController(searchController: UISearchController) {
        filteredList = list.filter({
            item in
            return item.containsString(searchController.searchBar.text!)
        })
        resultsTableViewController.list = filteredList
        resultsTableViewController.tableView.reloadData()
    }
}

最佳答案

var resultsTableViewController = ResultsTableViewController()

创建一个新的 ResultsTableViewController 但它没有链接到您的 Storyboard场景,因此不会设置任何 @IBOutlet。您需要为您的场景设置一个标识符(比如 resultsViewController),然后使用它从 Storyboard 中实例化 View Controller :

var resultsTableViewController: ResultsTableViewController!

override func viewDidLoad() {
    super.viewDidLoad()
    setUpSearchController()
}

func setUpSearchController(){

    let storyboard = UIStoryboard(name: "MyStoryboardName", bundle: nil)
    self.resultsTableViewController = storyboard.instantiateViewControllerWithIdentifer("resultsViewController") as! ResultsTableViewController

    searchController = UISearchController(searchResultsController: resultsTableViewController)
    searchController.dimsBackgroundDuringPresentation = false
    searchController.searchResultsUpdater = self
    searchController.hidesNavigationBarDuringPresentation = true
    tableView.tableHeaderView = searchController.searchBar
    tableView.scrollToRowAtIndexPath(NSIndexPath(forRow: 0, inSection: 0), atScrollPosition: UITableViewScrollPosition.Top, animated: false)
}

关于ios - 为什么我的 tableView 变量返回 nil?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39423976/

相关文章:

ios - 受密码保护的应用程序/登录屏幕

ios - 类型 '_' 的值没有成员

ios - 为 Crashlytics 寻找 dsyms

ios - for 循环错误

ios - Swift - 自定义单元格内容(UILabel、UIImageView)

swift nsobject 类如何返回值

ios - 在 iOS 应用程序中调试 MIDI

ios - 如何填写2个不同的单元格?

ios - Swift 在 UITableView 中创建分页

ios - 更新 CoreData iOS