I am trying to keep my uitableviewcells opaque during reorder animation – reason being that I am doing custom drawing of the cell in one view to enhance scroll performance, but doing this slows down the reorder animation significantly.
Any idea how to achieve this?
I feel dumb for asking this question XD
I just figured out that in my drawrect function, I can override alpha value. so, in the beginning of the draw, I just set self.alpha = 1.0f, and voila my cells are opaque in all modes, including in middle of reordering.