Re: iPhone: load cell from XIB slows down tableview?

2010-01-04 Thread Damien Cooke
John, I had a similar issue. For me the problem turned out to be that the reusableId was not being set as it was imported from the nib. Thus the call dequeue one was always retuning nil. I solved this by building the cell by hand and calling the correct init method so the reusableid was

Re: iPhone: load cell from XIB slows down tableview?

2010-01-04 Thread Tony Ingraldi
On Jan 4, 2010, at 12:03 AM, John Michael Zorko wrote: I'm trying to determine why my tableviews scroll so jerkily on non-3GS devices. The datasource only has perhaps 170 records, so I think it may have something to do with how i'm instantiating the cells in

Re: iPhone: load cell from XIB slows down tableview?

2010-01-04 Thread John Michael Zorko
Tony, Have you verified that you've set the Identifier for the custom cell in the XIB to match the above cellID? If they don't match, you'll end up loading the XIB for every row in the table view. If things are set up properly, the XIB will be loaded once for each visible row on the

iPhone: load cell from XIB slows down tableview?

2010-01-03 Thread John Michael Zorko
Hello, all ... I'm trying to determine why my tableviews scroll so jerkily on non-3GS devices. The datasource only has perhaps 170 records, so I think it may have something to do with how i'm instantiating the cells in -tableView:cellForRowAtIndexPath. In other apps i've done, I create the