我使用ViewController
创建了TableView
并为其添加了storyboard
。
我将Storyboard
中的班级设置为ViewController
到我的NewsFeedViewController
班级。我将tableview出口的代表设置为self。
class NewsFeedViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet weak var newsFeedTableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
newsFeedTableView.delegate = self
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 5
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell =
newsFeedTableView.dequeueReusableCellWithIdentifier(
"newsFeedIphoneCell", forIndexPath: indexPath)
as! NewsFeedIphoneTableViewCell
return cell
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
}
}
当我运行代码时,不会触发任何委托方法。我做错了什么?
答案 0 :(得分:7)
您缺少数据源分配。
尝试添加
newsFeedTableView.dataSource = self
。