nosedive25
nosedive25

Reputation: 2435

Table View Controller Problems

I added a table view into a view in interface builder and now I need to wire it up to some pre-made classes that you can generate in xcode. I set the tableview controller's class to the class in xcode and wired the dataSource and delegate to my table view but the app just crashes. Im not sure how to get data to properly load into my table view when using a tableview in a different view. If anyone knows how to do this any help is appreciated.

Thanks

Upvotes: 0

Views: 187

Answers (1)

ustun
ustun

Reputation: 7021

You need to have UITableView outlet, and connect from the File's Owner to the table in the IB.

Take a look at this too.

Upvotes: 2

Related Questions