如何使用代码连接数据源和委托 - iOS Swift
How to connect dataSource and delegate with code - iOS Swift
当您通过 [=27 中的 UI 进行连接时,我试图更好地了解数据源和委托出口如何连接到引擎盖下的 UITableView =] 拖放到 viewController 图标。
我找到了 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
}
谁能描述一下用代码进行这种连接所需的步骤?
以编程方式进行连接所需的步骤仅供参考。
1.- 为 tableView 创建 outlet
@IBOutlet weak var myTable: UITableView!
2.- 在 viewDidLoad 方法中分配委托和数据源。
myTable.delegate = self
myTable.dataSource = self
3.- 完成
有几种方法可以做到。
1.最简单的是拖放:
- 在您的 main.storyboard select 您的 TableView 中;
- 按下控制按钮;
- 单击鼠标并将其从您的 TableView 拖到 ViewController 的图标上并放下;
- 然后 select 数据源和委托,如上图所示。
2。另一种方式是通过编码:
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
}
}
PS: 确保不要忘记通过将 tableView outlet 拖放到 ViewController class 中将其连接到代码.
PPS: 它还会要求您在 class 中实现以下方法,以便您的 tableView 正常工作:
- 节中的行数
- cellForRowAtIndexPath
对于那些还没有的人,你会看到 Xcode 抱怨它。
当您通过 [=27 中的 UI 进行连接时,我试图更好地了解数据源和委托出口如何连接到引擎盖下的 UITableView =] 拖放到 viewController 图标。
我找到了 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
}
谁能描述一下用代码进行这种连接所需的步骤?
以编程方式进行连接所需的步骤仅供参考。
1.- 为 tableView 创建 outlet
@IBOutlet weak var myTable: UITableView!
2.- 在 viewDidLoad 方法中分配委托和数据源。
myTable.delegate = self
myTable.dataSource = self
3.- 完成
有几种方法可以做到。
1.最简单的是拖放:
- 在您的 main.storyboard select 您的 TableView 中;
- 按下控制按钮;
- 单击鼠标并将其从您的 TableView 拖到 ViewController 的图标上并放下;
- 然后 select 数据源和委托,如上图所示。
2。另一种方式是通过编码:
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
}
}
PS: 确保不要忘记通过将 tableView outlet 拖放到 ViewController class 中将其连接到代码.
PPS: 它还会要求您在 class 中实现以下方法,以便您的 tableView 正常工作:
- 节中的行数
- cellForRowAtIndexPath
对于那些还没有的人,你会看到 Xcode 抱怨它。