Started practice swift. In singleViewController I am trying to make a UITableView. In storyboard I set the datasource and delegate. Here I am getting the error
UITableView
You need to implement all the required methods of UITableViewDataSource in order to get rid of that error.
UITableViewDataSource
Basically... you're missing:
func tableView(tableView:UITableView!, numberOfRowsInSection section:Int) -> Int { //return XX }