I want to have something like this
class MyView: FormViewController {
@IBOutlet weak var table: UITableView!
// etc..
}
However i am not able to implement the cellForRowAtIndexPath
or numberOfRowsInSection
because they are already implemented within the Eurka library. I tried to overwrite those functions as well without success:
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if tableView.restorationIdentifier != "myTable" {
return tableView.numberOfRowsInSection(section)
}
return myDataType.count
}