ios - Slide in UITableViewCells while scrolling -
i have uitableview , animate rows appear again. want switch between animations, cells should uitableviewrowanimationleft , others uitableviewrowanimationright . don't know how implement feature uitableviewcontroller . tried insert following lines of code cellforrowatindexpath : [self.tableview beginupdates]; nsarray *updatepath = [nsarray arraywithobject:indexpath]; [self.tableview reloadrowsatindexpaths:updatepath withrowanimation:uitableviewrowanimationleft]; [self.tableview endupdates]; instead of sliding in cell, order of cells changed or of them appeared twice. tried insert these lines after cell creation. if (cell == nil) { ... } else { [self.tableview beginupdates]; nsarray *updatepath = [nsarray arraywithobject:indexpath]; [self.tableview reloadrowsatindexpaths:updatepath withrowanimation:uitableviewrowanimationleft]; [self.tableview endupdates]; i don't think you're going have su...