我是iOS编程的新手,我只是想设置一个可以填充数组内容的TableView。 我一直遇到以下错误。
未捕获异常'NSInternalInconsistencyException',原因:' - [UITableViewController loadView]加载了“BYZ-38-t0r-view-8bC-Xf-vdC”笔尖,但没有得到UITableView。'
我已经研究了几个建议的解决方案,但它们都不适用于我的情况。
有些人建议我让我的ViewController成为UIViewController的子类,但我这样做会得到以下error。
另一个建议我在我的自定义类中使用UIViewController而不是UITableViewController,但我得到了以下error这样做。
我的自定义类代码
//
// AddQuestionTableViewController.swift
// Quiz Add Question
//
// Created by Emil Shirima on 7/29/15.
// Copyright (c) 2015 Emil Shirima. All rights reserved.
//
import UIKit
class AddQuestionTableViewController: UITableViewController, UITableViewDataSource, UITableViewDelegate {
var sample = [String]()
override func viewDidLoad() {
super.viewDidLoad()
sample = ["apple","pear","banana","raspberry"]
// Uncomment the following line to preserve selection between presentations
// self.clearsSelectionOnViewWillAppear = false
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// MARK: - Table view data source
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
// #warning Potentially incomplete method implementation.
// Return the number of sections.
return 1
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete method implementation.
// Return the number of rows in the section.
return sample.count
}
// indexPath has info about which section and which row
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("questionCell", forIndexPath: indexPath) as! UITableViewCell
// Configure the cell...
let data = sample[indexPath.row]
cell.textLabel?.text = sample[indexPath.row]
return cell
}
/*
// Override to support conditional editing of the table view.
override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool {
// Return NO if you do not want the specified item to be editable.
return true
}
*/
/*
// Override to support editing the table view.
override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
if editingStyle == .Delete {
// Delete the row from the data source
tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
} else if editingStyle == .Insert {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
}
}
*/
/*
// Override to support rearranging the table view.
override func tableView(tableView: UITableView, moveRowAtIndexPath fromIndexPath: NSIndexPath, toIndexPath: NSIndexPath) {
}
*/
/*
// Override to support conditional rearranging of the table view.
override func tableView(tableView: UITableView, canMoveRowAtIndexPath indexPath: NSIndexPath) -> Bool {
// Return NO if you do not want the item to be re-orderable.
return true
}
*/
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
}
我的ViewController代码
//
// ViewController.swift
// Quiz Add Question
//
// Created by Emil Shirima on 7/29/15.
// Copyright (c) 2015 Emil Shirima. All rights reserved.
//
import UIKit
class ViewController: UIViewController{
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
我现在的层次结构故事板可以在这里找到://i.stack.imgur.com/2lEEe.png。 对不起,没有足够的声望点发布额外的链接。
我确实知道为什么会这样,但如果有人会向我解释为什么以及如何解决它,我会真诚地感激它。
答案 0 :(得分:0)
请在Storyboard上检查名为“AddQuestionTableViewController”的ViewController。
我认为你将“AddQuestionTableViewController”命名为错误的ViewController(不是UITableViewController)
答案 1 :(得分:0)
这种情况的一些常见原因与Storyboard连接和Table View Controller文件有关。首先,在Storyboard中单击Table View本身并检查Outlets。
如果它们已断开连接,请从delegate
和data source
中的圆圈拖动到视图控制器顶部的小桌视图控制器图标。
另外,请确保您的课程正确连接。在故事板中为表视图控制器(不是表本身)转到ID页面并检查课程。
答案 2 :(得分:0)
错误告诉了您详细信息:WDS.browser.get('http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_select')
WDS.browser.switchTo().frame('iframeResult')
var element = WDS.browser.findElement(org.openqa.selenium.By.xpath('//select'))
var select = new org.openqa.selenium.support.ui.Select(element)
select.selectByVisibleText('Opel')
您应该检查自定义UITableView。
你的问题可能是:
您没有在自己的xib文件中将自定义UITableView标识设置为“BYZ-38-t0r-view-8bC-Xf-vdC”。如果是,请转到[UITableViewController loadView] loaded the "BYZ-38-t0r-view-8bC-Xf-vdC" nib but didn't get a UITableView.
将恢复标识设置为“BYZ-38-t0r-view-8bC-Xf-vdC”。
您已将xib文件的标识设置为“BYZ-38-t0r-view-8bC-Xf-vdC”,但它不是UITableView,它是UIView或其他东西。如果是这样,请将标识设置为自定义UITableView