为啥我的 tableView 变量返回 nil?
Posted
技术标签:
【中文标题】为啥我的 tableView 变量返回 nil?【英文标题】:Why is my tableView variable returning nil?为什么我的 tableView 变量返回 nil? 【发布时间】:2016-09-10 08:01:26 【问题描述】:我在我的项目中使用UISearchController
。我通过为init(searchResultsController)
方法提供一个管理tableView 的UIViewController
对象来启动搜索控制器。这个对象的代码是:
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!
此外,当我尝试从UISearchResultsUpdating
协议的updateSearchResultsForSearchController(searchController: UISearchController)
方法访问resultsTableViewController.tableView
以填充其“列表”数组时,它给了我一个错误。 tableView 返回 nil 并且应用程序崩溃。我要指出的是,我已经将tableView 的数据源、委托和IBOutlet
变量连接到了适当的视图控制器。我希望有人向我解释为什么会发生这种情况?我想我对ResultsTableViewController
的生命周期有误解。最后,当我从情节提要中拖出一个 TableViewController 而不是从头开始制作我自己的表格视图控制器时,一切都运行顺利,没有任何错误!你能帮我理解这里发生了什么吗?
编辑:我的初始视图控制器的代码是:
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()
【问题讨论】:
如何创建ResultsTableViewController
的实例?
是的,我愿意。它被称为 resultsTableViewController。
不,我的意思是显示您创建该实例的代码,或者它是您的初始视图控制器。您描述的症状与未从情节提要创建视图控制器一致
【参考方案1】:
var resultsTableViewController = ResultsTableViewController()
创建一个新的ResultsTableViewController
,但它没有链接到您的情节提要场景,因此不会设置任何@IBOutlet
s。您需要为您的场景设置一个标识符(例如 resultsViewController),然后使用它从情节提要中实例化视图控制器:
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)
【讨论】:
我的故事板中有一个视图控制器(其中包含一个表格视图),它的标识为 ResultsTableViewController。所以我认为它已正确连接到情节提要? @Paulw11 是的,但是当您说var resultsTableViewController = ResultsTableViewController()
时,它不使用情节提要中的任何内容,它只是创建了该类的“空”实例,因此您的出口为零。您需要使用instantiateViewControllerWithIdentifier
,正如我所展示的那样才能连接对象
非常感谢 @Paulw11 指出 NIL 实例场景!!以上是关于为啥我的 tableView 变量返回 nil?的主要内容,如果未能解决你的问题,请参考以下文章
在单元格中单击时,tableView:indexPathForCell 返回 nil
为啥 UITableViewController self.tableView 属性在 UIPopoverController 中呈现时为 Nil?