为什么我设置了原型单元但没有出现?

时间:2015-06-09 13:47:18

标签: ios iphone xcode swift

class DemoTableController: UIViewController,UITableViewDataSource,UITableViewDelegate {

@IBOutlet weak var answerView: UITableView!
override func viewDidLoad() {
    super.viewDidLoad()
    answerView.delegate = self
    answerView.dataSource = self
    answerView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "reuseIdentifier")



}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

// MARK: - Table view data source

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    // #warning Potentially incomplete method implementation.
    // Return the number of sections.

    return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    // #warning Incomplete method implementation.
    // Return the number of rows in the section.
    return 5
}


func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath) as! UITableViewCell

    // Configure the cell...

    return cell
}

我通过StoryBoard将tableView添加到ViewController中的视图。

然后我在我的原型单元格中添加了一个按钮。空白tableView确实显示,但它没有按钮。

提前谢谢。

2 个答案:

答案 0 :(得分:1)

删除此行,您的代码应该有效。这里您不需要registerClass

 answerView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "reuseIdentifier")

答案 1 :(得分:0)

请确保您在故事板中正确设置了标识符。

Storyboard

必须与下面的行相同:

let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath) as! UITableViewCell

此外,您可能不需要在tableView上使用registerClass方法(在viewDidLoad中)。