Hello,
I tried the usual way of adding new rows to a table in my custom table view
Code:
[tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationRight];
But the app crashes, it seems that this isn't the way to add new custom cells to the table. What is the right method to do this?
Thank you
JVPython