适用于iOS的Swift TableView [英] Swift TableView for iOS

查看:86
本文介绍了适用于iOS的Swift TableView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经提到了这个问题,并试图实现各种答案。我正在做一些愚蠢的事情,因为没有调用cellForRow,我只是得到一个空白的tableView。我必须覆盖其他数据源或委托方法吗?

I have referred to this question, and tried to implement the various answers. I'm doing something dumb, as cellForRow is not being called, and I'm just getting a blank tableView. Are there other data source or delegate methods that I must override?

谢谢

class ViewController: UITableViewController {

    override func viewDidLoad() {
        super.viewDidLoad()


        // Do any additional setup after loading the view, typically from a nib.
        //tableView.delegate = self
        //tableView.dataSource = self

        tableView.registerClass(UITableViewCell.classForCoder(), forCellReuseIdentifier: "Cell")

        //tableView.registerClass(MyTableViewCell.self, forCellReuseIdentifier: "Cell")
        tableView.reloadData()
    }

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

    override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!  {
        println("cellForRowAtIndexPath")
        println()
        //variable type is inferred
        var cell = tableView.dequeueReusableCellWithIdentifier("CELL") as? UITableViewCell

        if !cell {
            cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "CELL")

        }

        cell!.textLabel.text = "Text Label"
        cell!.detailTextLabel.text = "Detail Text Label"

        return cell
    }


}

更新 - 以下似乎有效..感谢您的帮助!

UPDATE - The following appears to work.. Thanks for the help!!

class ViewController: UITableViewController, UITableViewDataSource, UITableViewDelegate {

    override func viewDidLoad() {
        super.viewDidLoad()


        // Do any additional setup after loading the view, typically from a nib.
        //tableView.delegate = self
        //tableView.dataSource = self

        tableView.registerClass(UITableViewCell.classForCoder(), forCellReuseIdentifier: "Cell")

        //tableView.registerClass(MyTableViewCell.self, forCellReuseIdentifier: "Cell")
        tableView.reloadData()
    }

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

    override func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int {
        return 10
    }

    override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!  {
        println("cellForRowAtIndexPath")
        println()
        //variable type is inferred
        var cell = tableView.dequeueReusableCellWithIdentifier("CELL") as? UITableViewCell

        if !cell {
            cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "CELL")

        }

        cell!.textLabel.text = "Text Label"
        cell!.detailTextLabel.text = "Detail Text Label"

        return cell
    }


}


推荐答案

这是工作代码。无需在 -viewDidLoad()中注册单元格。另外 UITableView 被添加为Storyboard中的子视图。

Here is working code. No need to register cell in -viewDidLoad(). Also UITableView is added as subview in Storyboard.

如果有人有这种要求。

import UIKit

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

    @IBOutlet weak var tableView: UITableView!

    override func viewDidLoad() {
        super.viewDidLoad()
        self.tableView.delegate = self
        self.tableView.dataSource = self
    }

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

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

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

        var cell = tableView.dequeueReusableCellWithIdentifier("CELL") as UITableViewCell?

        if (cell == nil) {
            cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "CELL")
        }

        cell?.textLabel?.text = NSString(format: "%d", indexPath.row) as String
        return cell!
    }
}

这篇关于适用于iOS的Swift TableView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆