Animating Reloading of UITableView

Posted by ustun on Stack Overflow See other posts from Stack Overflow or by ustun
Published on 2010-04-06T00:33:31Z Indexed on 2010/04/06 0:43 UTC
Read the original article Hit count: 271

Filed under:
|
|
|

I am trying to animate table rows in a UITableView in an iPhone project as I swipe across the screen to reload the data.

When I disable animations and only call reloadData, table continues responding to swipe gestures.

When I add animations with the reloadSections:WithRowAnimation: method, table stops responding to swipes, and only the navigation bar at the top responds to swipes.

Another change is that, table starts responding to selection and I have to manually disable it again. I suspect these two issues might be related.

I am using the swipe detection code over here btw: 1

© Stack Overflow or respective owner

Related posts about iphone

Related posts about uitableview