I’m using Delegate methods to get data from child view and want to dynamically edit my table in the root view.
So I would like to do something like this in my viewWillAppear method :
[myTable setCell:newCell atIndex:i];
What should I do ? Thanks a lot
Well, finally I made it using :
I used reloadData because it’s a little TableView (3 cells), for big TableViews this should be better :
Thanks anyway !