Hey all,
I've got a tabBar app with 2 tabs.
The first tab implements a UINavcontroller with a UIVieController that implements a table view. clicking on a table cell take you too another tableview with more populated cells etc. The last tableView is just a custom tableview cell. My problem arises is if I am currently on the last table view with ths custom cells and I switch to the second tab and then come back to the first tab again, the app crashes.
The crash occurs in the vieWillAppear function with
Code:
[self.tableView reload data];
why is this happening and do I need this reload data method there?
Thanks mc