I have added a UITableViewController to storyboard and created/assigned a new class which inherits from PFQueryTableViewController to the storyboard controller. I then wrote the following init functions but I am unable to get the Table view controller working correctly.
What needs to be implemented in order to instantiate the PFQueryTableViewController? The code in the Parse doc is not working correctly in swift.
init(coder aDecoder: NSCoder!){
super.init(coder: aDecoder)
}
init(className aClassName: String!) {
super.init(className: aClassName)
self.parseClassName = "Timeline"
self.textKey = "Name"
self.pullToRefreshEnabled = true
self.paginationEnabled = false
}