I\'m currently building my first app in Swift. I use Parse as database and want to show all the titles in table Recipes. I created an array for all the titles and add every
The error message is misleading, but the problem is that your FirstViewController does not have a tableView property.
Most probably you want FirstViewController to inherit from
UITableViewController instead of UIViewController. That would solve
the problem because UITableViewController has a tableView property.