Hello,
I need to create a TableView with many thousands of row elements. On iOS, this is easily accomplished because the TableView asks the TableViewDelegate how many rows are in the table, and then only asks the delegate for the rows that it needs as they scroll onscreen.
Is there any way to create a table with thousands or even millions of rows, without having to do “tableView:insertRow{}” inside a giant for loop? The documentation seems to indicate that there is no way to do this, because I need to call insertRow to tell the height and params for each row to the TableView
-Ed