Re: [iPhone] Animate tableView reloadData

2009-12-12 Thread Philip Vallone
Thanks Luck for the guidance. Phil On Dec 11, 2009, at 9:49 AM, Luke the Hiesterman wrote: > There's a set of methods in UITableView for animated table updates. All the > insert/delete/road calls should be within a beginUpdates/endUpdates block. > > - (void)beginUpdates; // allow multiple in

Re: [iPhone] Animate tableView reloadData

2009-12-11 Thread Luke the Hiesterman
There's a set of methods in UITableView for animated table updates. All the insert/delete/road calls should be within a beginUpdates/ endUpdates block. - (void)beginUpdates; // allow multiple insert/delete of rows and sections to be animated simultaneously. Nestable - (void)endUpdates;

[iPhone] Animate tableView reloadData

2009-12-11 Thread Philip Vallone
Hi List, I have a table that gets reloaded when a user presses a button. Is it possible to animate reloadData and if so can you point me in the right direction? Thanks Phil ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post