Im working on an iphone project with storyboards in Xcode, and I have a tableview that lists cells loaded from an array it owns. Through push segues I load 2 other views for adding an item to the table, and then I use a unwind segue to go back to the table.
In the segue method for the tableview, I use "reloadData" to load the added cell. But when I do so, the table scroll boundaries are off, as if no cell was added. Though when I go back one step in the push-"hierarchy" and back in again to the tableView, the boundaries are working fine. So, I guess I have to do some more updating in the segue method other than just calling "reloadData"?
(by "boundries are off" I mean that the tableview scrolling starts to bounce at the same scroll position as it did before any added cells. I guess its best explained in the gif found by the link below)
Sorry for such a trivial question, but I'm having a hard time finding whats wrong. Thanks!
(made a nice gif of the problem, but dont have reputation enough to post images... here's the link: http://i251.photobucket.com/albums/gg304/creutzell/Comp-1.gif)