Need the application to add rows dynamically to a TableView. How to implement that?
This doesn’t seem to work:
NSIndexPath *path = [[NSIndexPath alloc]initWithIndex:(rowCount - 1)];
[self.tableView insertRowsAtIndexPaths:
[NSArray arrayWithObject:path] withRowAnimation:UIViewAnimationCurveEaseIn];
Have a look at:
If you would have waited a while writing this question, you would have seen numerous
suggestions for similar questions.