Re: UITableView: combining row moves with insert/delete/reload in animation

2016-03-08 Thread Luke Hiesterman
Great. That sounds like the appropriate work-around. Luke On Mar 8, 2016, at 1:33 PM, Jens Alfke mailto:j...@mooseyard.com>> wrote: I was able to work around the problem by moving the reloadRows call to after -endUpdates. Of course I had to modify the row numbers to the post-insert/delete/mov

Re: UITableView: combining row moves with insert/delete/reload in animation

2016-03-08 Thread Jens Alfke
> On Mar 8, 2016, at 11:58 AM, Luke Hiesterman wrote: > > If you’re getting asked to create a row at index 3 from that code snippet, > then that looks like a UIKit bug. I’d advise filing it at bugreport.apple.com > including a sample app showing that behavior. Wi

Re: UITableView: combining row moves with insert/delete/reload in animation

2016-03-08 Thread Luke Hiesterman
If you’re getting asked to create a row at index 3 from that code snippet, then that looks like a UIKit bug. I’d advise filing it at bugreport.apple.com including a sample app showing that behavior. Luke > On Mar 8, 2016, at 11:26 AM, Jens Alfke wrote: > > I’m animating a UITableView in respo

UITableView: combining row moves with insert/delete/reload in animation

2016-03-08 Thread Jens Alfke
I’m animating a UITableView in response to its backing data changing. I’ve gotten it working with row insertion, deletion and reloads, but now I’m trying to add row movement and it seems like I’ve blown the little view’s mind. Does anyone have experience at combining -moveRowAtIndexPath: with th