I’m new on iOS programming. My situation is that I try inserting a row into tableview, I’ve try the function insertRowsAtIndexPath:withRowAnimation but it’s animation is so fast.
How can I make it slower?
I’ve got some answers that iOS does NOT allow to adjust its speed, so it’s necessary to do my own animation within a block when calls insertRowsAtIndexPath:withRowAnimation likes
insertRowsAtIndexPath:withRowAnimation:^{…..}
But what exactly must I do in the block? Could anybody show me, I just want to make the animation slower!
There is not method
insertRowsAtIndexPath:withRowAnimation:^{.....}thus you have to either accept the fact the the animation is going to fast or write you own animation code.Which for
UITableViewwill be vary hard to do.