You can do this in two ways -
[tableView beginUpdates]; [tableView insertRowsAtIndexPaths:newResults withRowAnimation:UITableViewRowAnimationNone]; [tableView endUpdates];
or
[tableView insertRowsAtIndexPaths:newResults withRowAnimation:UITableViewRowAnimationNone]
here newResults are the NSArray of NSIndexPath you need to create. Then new lines are inserted (with or without some animation) into these lines.
Srikar appalaraju
source share