I use
func insertRowsAtIndexPaths(indexPaths: [NSIndexPath],
withRowAnimation animation: UITableViewRowAnimation)
method to insert a new Ro
Did you try using UITableViewRowAnimationBottom
as the row animation parameter?
Like so: (in swift)
tableView.insertRowsAtIndexPaths([indexPath],
withRowAnimation: UITableViewRowAnimation.Bottom)
Or Objective-C:
[self insertRowsAtIndexPaths:indexPaths
withRowAnimation:UITableViewRowAnimationBottom];