How many times should the tableView:numberOfRowsInSection
method be called when populating a table view?
My application is crashing with no warnings, errors, or a stack trace. I have also tested for memory leaks and have found none. The app holds steady at about 1.4MB.
I have NSLog reporting as methods are messaged, and I notice that tableView:numberOfRowsInSection
is being called multiple times. The app crashes during one of these "extra" calls. The point at which the app crashes varies. I should point out that the table is populating about 600 cells, if that makes a difference.
I can post code if you want, but my data source comes from a singleton class
, so It is a lot of code. Any help would be greatly appreciated.