我的 TableViewCell 自定义类中的 IbOutlet 从未被初始化
Posted
技术标签:
【中文标题】我的 TableViewCell 自定义类中的 IbOutlet 从未被初始化【英文标题】:My IbOutlet from my TableViewCell custom class is never being initialized 【发布时间】:2016-06-08 10:03:49 【问题描述】:我有这个问题。我无法从任何地方访问我的插座,因为如果我不将其包装为可选应用程序崩溃,总是说“发现意外零......”
如果我打开它它不会崩溃但永远不会被初始化。
我从笔尖唤醒的方法永远不会从自定义类shopsTableViewCell : UITableViewCell
中调用
如果您假装从情节提要中加载自定义单元格,我一直在阅读堆栈溢出,您必须注释此行,否则它将覆盖当前实例,因此我已注释此行:
tableView.registerClass(shopsTableViewCell.self, forCellReuseIdentifier: "cell")
但现在我得到了这个错误:
由于未捕获的异常而终止应用 NSInternalInconsistencyException,原因:无法使单元格出列 带有标识符单元 - 必须为 标识符或连接情节提要中的原型单元
在故事板中,我检查了文件的所有者,因为它链接到自定义类,所以没问题,而且出口也做得很好。
这是我的ViewController
课程代码:
import Foundation
import UIKit
import CoreLocation
import MapKit
class showShopsTableView : ViewController, UITableViewDelegate, UITableViewDataSource,UISearchBarDelegate, UISearchResultsUpdating
var selectedRow : shopsTableViewCell!
var index : Int = 0
@IBOutlet var searchBar: UISearchBar!
@IBOutlet var tableView: UITableView!
let resultSearchController = UISearchController(searchResultsController:nil)
var searchActive : Bool = false
var filtered:[String] = []
override func viewDidLoad()
super.viewDidLoad()
viewDidLayoutSubviews()
//Configure TableView
addTableViewToView()
//Clean array data
TableData.removeAll()
//Retrieve data asynchronously
let call = webApi()
call.retrieveAllShops(self.tableView)
private func addTableViewToView()
tableView = UITableView(frame: UIScreen.mainScreen().bounds, style: UITableViewStyle.Plain)
tableView.delegate = self
tableView.dataSource = self
searchBar.delegate = self
tableView.registerClass(shopsTableViewCell.self, forCellReuseIdentifier: "cell")
resultSearchController.searchResultsUpdater = self
resultSearchController.searchBar.sizeToFit()
resultSearchController.searchBar.delegate = self
resultSearchController.searchBar.scopeButtonTitles = ["Filter", "Map"]
tableView.tableHeaderView = resultSearchController.searchBar
self.view.addSubview(self.tableView)
override func viewDidLayoutSubviews()
if let rect = self.navigationController?.navigationBar.frame
let y = rect.size.height + rect.origin.y
self.tableView.contentInset = UIEdgeInsetsMake( y, 0, 0, 0)
//Segue Method
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)
let destinationViewController = segue.destinationViewController as! detailViewShop
destinationViewController.dataSend = self.selectedRow
destinationViewController.titleText = self.selectedRow.shopTitle // set your properties here
destinationViewController.descriptionText = self.selectedRow.shopDesc
destinationViewController.imageOutlet = self.selectedRow.shopImageTitle
destinationViewController.shopCategory = self.selectedRow.shopCategory
destinationViewController.brands = self.selectedRow.Brands
//TableView Delegate Methods
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath)
selectedRow = tableView.cellForRowAtIndexPath(indexPath)! as! shopsTableViewCell
self.performSegueWithIdentifier("cell", sender: self)
func tableView(tableView:UITableView, numberOfRowsInSection section:Int) -> Int
if(searchActive)
return filtered.count
return TableData.count
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
let cell : shopsTableViewCell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! shopsTableViewCell
if(searchActive)
cell.textLabel?.text = filtered[indexPath.row]
else
cell.textLabel?.text = TableData[indexPath.row]
cell.textLabel?.numberOfLines = 0
cell.textLabel?.lineBreakMode = NSLineBreakMode.ByWordWrapping
let image : UIImage = UIImage(named: "versace_shop.jpg")!
cell.imageView?.image = image
cell.shopImg = UIImageView.init(image: UIImage.init(named:"versace_shop.jpg"))
let arrayIndex : String = "\(self.index)"
let data = nsDict.objectForKey(arrayIndex)
print(data)
//Title
cell.shopTitle = data?.objectForKey("name") as? String
cell.shopName?.text = "alfredo"
//Description
cell.shopDesc = data?.objectForKey("name") as? String
//Description
cell.shopCategory = data?.objectForKey("Type") as? String
//Brands
cell.Brands = data?.objectForKey("Brands") as? String
self.index += 1
return cell
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat
return 100
//SearchBar Delegate Methods
func searchBarTextDidBeginEditing(searchBar: UISearchBar)
searchActive = true;
func searchBarTextDidEndEditing(searchBar: UISearchBar)
searchActive = false;
func searchBarCancelButtonClicked(searchBar: UISearchBar)
searchActive = false;
func searchBarSearchButtonClicked(searchBar: UISearchBar)
searchActive = false;
func searchBar(searchBar: UISearchBar, textDidChange searchText: String)
filtered = TableData.filter( (text) -> Bool in
let tmp: NSString = text
let range = tmp.rangeOfString(searchText, options: NSStringCompareOptions.CaseInsensitiveSearch)
return range.location != NSNotFound
)
if(filtered.count == 0)
searchActive = false;
else
searchActive = true;
self.tableView.reloadData()
func updateSearchResultsForSearchController(searchController: UISearchController)
func searchBar(searchBar: UISearchBar, selectedScopeButtonIndexDidChange selectedScope: Int)
filterContentForSearchText(searchBar.text!, scope: searchBar.scopeButtonTitles![selectedScope])
func filterContentForSearchText(searchText: String, scope: String = "All")
tableView.reloadData()
override func didReceiveMemoryWarning()
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
这是我自定义的 tableViewCell 类代码::
import Foundation
import UIKit
class shopsTableViewCell : UITableViewCell
@IBOutlet weak var shopName: UILabel!
@IBOutlet weak var shopImg: UIImageView!
@IBOutlet weak var shopDescription: UILabel!
@IBOutlet weak var label2: UILabel!
@IBOutlet weak var label1: UILabel!
var shopTitle : String?
var shopDesc : String?
var shopImageTitle : String?
var shopCategory : String?
var Brands : String?
override func awakeFromNib()
super.awakeFromNib()
override func setSelected(selected: Bool, animated: Bool)
super.setSelected(selected, animated: animated)
编辑显示原型:
编辑以添加网点图片:
这是retrieveAllShopsMethod
的代码:
func retrieveAllShops(tableView : UITableView)
setGetShopsListUrl()
call(tableView)
private func setGetShopsListUrl()
userApiCallUrl += "shops/all"
private func call(tableView : UITableView)
let request = NSMutableURLRequest(URL: NSURL(string: userApiCallUrl)!)
request.HTTPMethod = "POST"
request.HTTPBody = postParam.dataUsingEncoding(NSUTF8StringEncoding)
let task = NSURLSession.sharedSession().dataTaskWithRequest(request) data, response, error in
guard error == nil && data != nil else
// check for fundamental networking error
print("error=\(error)")
return
if let httpStatus = response as? NSHTTPURLResponse where httpStatus.statusCode != 200
// check for http errors
print("statusCode should be 200, but is \(httpStatus.statusCode)")
print("response = \(response)")
let responseString = NSString(data: data!, encoding: NSUTF8StringEncoding)
let json: AnyObject? = responseString!.parseJSONString
self.parseJson((json as! NSMutableArray), tableView: tableView)
task.resume()
private func parseJson(json : NSMutableArray, tableView : UITableView)
var c : Int = 0
for j in json
//Create main value
guard let value = j.valueForKey("value")?.valueForKey("value")! else
continue
//Get name
guard let Name : String = (value.valueForKey("Name")?.valueForKey("en") as? String) else
continue
TableData.append(Name)
doTableRefresh(tableView);
TableData 是一个全局变量:
var TableData:Array< String > = Array < String >()
【问题讨论】:
shopsTableViewCell 是你的故事板中 UITableView 的原型单元格吗? 你不应该自己打电话给viewDidLayoutSubviews()
。一旦准备好,UIKit 就会这样做。所有viewDid...
和viewWill...
方法都相同。
【参考方案1】:
看来您正在情节提要中设置 tableView,但随后也有代码在 viewController 中设置它,这可能会导致问题。如果故事板中的内容正确连接,您可以删除:
从addTableViewToView()
删除以下行,因为它们已经(或可以)在情节提要中设置:
tableView = UITableView(frame: UIScreen.mainScreen().bounds, style: UITableViewStyle.Plain)
tableView.delegate = self
tableView.dataSource = self
tableView.registerClass(shopsTableViewCell.self, forCellReuseIdentifier: "cell")
另外,你能在情节提要的 tableView 上显示插座吗?你那里可能也有不必要的出口。
提示
只是对代码的一些友好反馈:
类名应以大写字母开头。 常量/变量应以小写字母开头。 您有一个标识符为cell
的segue 和单元格。应该是唯一的和描述性的。
UIKit 包括 Foundation。无需同时导入两者(尽管它不会造成任何伤害)。
这些提示/最佳实践将帮助其他人更轻松地检查您的代码。
【讨论】:
我评论了你说的那几行,tableView 加载为空,没有结果。我必须进一步调查原因,但也许您的答案已经是好的答案。另外,要感谢您的友好反馈,这真的很有帮助,我非常感激。我已经编辑了我的帖子以显示网点 还需要删除self.view.addSubview(self.tableView)
除了searchBar()
之外,我看不到tableData 在哪里被初始化或赋值。它有什么价值吗?
in viewDidLoad() -> call.retrieveAllShops(self.tableView) 这是一个异步调用,将数据加载到数组和tableView中,作为参数发送。正在编辑以添加此代码。【参考方案2】:
选择原型单元格,前往
attributes inspector -> table view cell -> identifier
并确保您将其命名为 cell
【讨论】:
我的帖子中已经有一张图片说明了这一步,并且做得很好。编辑:我的错误,我认为这一步是用图片说明的,但事实并非如此,所以我编辑为添加此图像。这不是解决方案,但感谢您的评论。 您帖子中的图片未显示您已将标识符命名为cell
您是否将 tableview 委托和源连接到情节提要上的视图控制器?以上是关于我的 TableViewCell 自定义类中的 IbOutlet 从未被初始化的主要内容,如果未能解决你的问题,请参考以下文章
自定义 TableViewCell 中的标签不能是多行或换行
添加了 IBOutlet 和自定义 TableViewCell 不再起作用
如何在目标 c 中的视图控制器上获取自定义 TableViewCell 值