We save the id of an object to an different class. We have a table view that leads to another table view when the cell is clicked on. The data for the second table view is populated in the initWithCoder method, but it is not displayed in the second table view. We know that the array is not being populated before the view appears. Is there any way we could wait for the array to be populated properly before we display the table view?
Thank you all.
another table viewthe view of another view controller? Why not populate array before display the table view? Also, you can always[tableView reloadData]after the data source is populated. - wcd