如何使用代码连接dataSource和delegate - iOS Swift

时间:2015-11-13 13:58:41

标签: ios swift uitableview datasource

我试图通过拖放到viewController图标,在Xcode中通过UI进行连接时,更好地了解dataSource和委托出口如何连接到UITableView。

我发现this thread但我觉得我错过了一些东西,因为我无法让它发挥作用。

以下是我目前通过XCode连接插座(通过拖放)工作正常的代码。

import UIKit

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {

    var hobbies:[String] = ["Computers", "Photography", "Cars", "Reading", "Learning New Things"]


    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return hobbies.count
    }

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

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

        cell.textLabel?.text =  hobbies[indexPath.row]

        return cell
    }

    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.
    }

}

我尝试删除XCode创建的插座连接,为tableView(myTable)创建了一个插座,并在viewDidLoad方法中添加了以下代码,但它不起作用,没有错误它只是没有加载数据。

        override func viewDidLoad() {
            super.viewDidLoad()
            // Do any additional setup after loading the view, typically from a nib.

           myTable.delegate = self
           myTable.dataSource = self
        }

有人可以描述与代码建立连接所需的步骤吗?

2 个答案:

答案 0 :(得分:10)

此处仅供参考,以编程方式进行连接所需的步骤。

1.-为tableView创建插座

 @IBOutlet weak var myTable: UITableView!

2.-在viewDidLoad方法中分配delegate和dataSource。

myTable.delegate = self
myTable.dataSource = self

3.-完成

答案 1 :(得分:3)

有几种方法可以做到。

<强> 1。最简单的方法是拖放:

Dragging and dropping

  • 在您的main.storyboard中选择您的TableView;
  • 按下控制按钮;
  • 点击鼠标并将其从TableView拖动到ViewController的图标并将其删除;
  • 然后选择dataSource和delegate,如上图所示。

<强> 2。另一种方式是编码:

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {

@IBOutlet weak var tableView: UITableView!

override func viewDidLoad() {
        super.viewDidLoad()

        tableView.delegate = self
        tableView.dataSource = self
    }
}

PS:请确保不要忘记将tableView插座连接到您的代码,方法是将其拖放到ViewController类中。

PPS:它还会要求您在类中实现以下方法,以便tableView正常工作:

  • numberOfRowsInSection
  • 的cellForRowAtIndexPath

对于那些尚未拥有它们的人,您会看到Xcode抱怨它。