我想了解为什么跟随Swift代码不起作用,但使用注释版本呢。我不确定dataSource是否通常包含在一个单独的类中,但我认为这不重要。我正在使用Xcode 6.3.2,这些都是最新的。
// MainViewController.swift
import UIKit
class MainViewController: UIViewController {
@IBOutlet weak var tableView: UITableView!
var dataSource:UITableViewDataSource?
override func viewDidLoad() {
super.viewDidLoad()
// dataSource = MainTableViewDataSource()
// tableView.dataSource = dataSource
tableView.dataSource = MainTableViewDataSource()
}
}
MainTableViewDataSource只是一个实现UITableViewDataSource协议并使用一些虚拟数据的类。
// MainTableViewDataSource.swift
import UIKit
class MainTableViewDataSource : NSObject, UITableViewDataSource {
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 100
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1000
}
func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return String(section + 1)
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell = UITableViewCell()
cell.textLabel?.text = "Joejoe"
return cell
}
}
答案 0 :(得分:4)
如果你不做正确的记忆管理,你会遇到奇怪的结果 - 有时甚至是不一致的。