How can I change Table View Controller's type to a regular View Controller?
ios, iphone, objective-c, storyboard, xcode
Solution
You need to create a new view controller and drag a tableview into it. Remember to set the delegate and datasource of the tableview to the view controller.
Problem
I followed the "Storyboard tutorial" and made some Table View Controllers; now I want to change one of them to a regular View Controller. Is there a way to do that without making a new one?