I have a list of data and they are displayed in a TableView
.
I have one property as "Data Loading"
- when this is
false
I need to show one kind of cell - if it is
true
I need to show a different one.
So while deleting the existing Cell in the TableView I need to animate it (from right to left).
How to achieve this?
Any input would be helpful. Thanks in advance!
I've already tried this
ListView.DeleteRows(new NSIndexPath[] { indexPath }, UITableViewRowAnimation.Left);
but here the animation is too fast!!