编译&与“Type'ViewController'相关的构建错误不符合协议'UITableViewDataSource'”

时间:2016-11-28 19:08:17

标签: ios swift

我不明白为什么我的应用程序没有编译。这是目前的输出:

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

    var IndexArray = ["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]
    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.
    }

    func numberOfSectionsinTableView(tableView: UITableView) -> Int {
        return IndexArray.count
    }

    func tableView(tableView: UITableView, tiltleForHeaderInSection section: Int) -> String? {
        return IndexArray[section]
    }

    func sectionIndexTitlesfortableView (tableView: UITableView) -> [String]? {
        return IndexArray
    }

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

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "TableCell", for: indexPath as IndexPath) as! TableCell

        cell.imgPhoto.image = UIImage(named: "charity")
        cell.lblUserName.text! = "User Name"

        return cell
    }

    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

    }
}

2 个答案:

答案 0 :(得分:0)

您缺少指定在您的类派生的协议中声明的一些方法。

func tableView(UITableView,cellForRowAt:IndexPath) 需要。要求单元格的数据源插入表视图的特定位置。

func tableView(UITableView,numberOfRowsInSection:Int) 需要。告诉数据源返回表视图的给定部分中的行数。

至少必须在你的类中声明上述两种方法,否则会出现错误。

这些只是必需的方法,但是要以正确的方式运行,您需要定义其他方法。请参阅UITableViewDataSource协议上的Apple文档

答案 1 :(得分:0)

在Swift 3中,所有方法签名都已更改为:

func numberOfSections(in tableView: UITableView) -> Int { }

func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? { }

func sectionIndexTitles(for tableView: UITableView) -> [String]? { }

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

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { }

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {}