0
我對正在發生的事情感到困惑我在收集視圖上做了一個教程,因爲我對編程相當陌生,而且我相信我做的一切都正確,但是我碰到了-[UIView tableView:numberOfRowsInSection:]: unrecognized selector sent to instance
。UITableView無法識別的選擇器發送到實例
import UIKit
class ViewController: UIViewController, UITableViewDataSource {
var categories = ["Action", "Drama", "Science Fiction", "Kids", "Horror"]
func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return categories[section]
}
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return categories.count
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell") as! CategoryRow
return cell
}
它的工作!謝謝我將我的數據源直接設置爲tableview而不是視圖控制器 – Hightower98
最受歡迎的兄弟 –