I am able to design custom UITableViewCells and load them just fine using the technique described in the thread found at http://forums.macrumors.com/showthread.php?t=545061. However, using that method no longer allows you to init the cell with a reuseIdentifier which means you have to create whole new instances of each cell at every call. Has anyone figured out a good way to still cache particular cell types for reuses, but still be able to design them in Interface Builder?
|
|
Just implement a method with the appropriate method signature:
|
||
|
|
|
|
I can't remember where I found this code originally, but it's been working great for me so far.
Example Interface Builder setup...
|
||
|
|
|
|
Actually, since you are building the cell in Interface Builder, just set the reuse identifier there: |
|||
|
|
|
|
Louis method worked for me. This is the code I use to create the UITableViewCell from the nib:
|
||
|
|
|
|
Look at the answer I gave to this question: It's not only possible to design a UITableViewCell in IB, it's desirable because otherwise all of the manual wiring and placement of multiple elements is very tedious. Performaance is fine as long as you are careful to make all elements opaque when possible. The reuseID is set in IB for the properties of the UITableViewCell, then you use the matching reuse ID in code when attempting to dequeue. I also heard from some of the presenters at WWDC last year that you shouldn't make table view cells in IB, but it's a load of bunk. |
||
|
|
|
|
For what it's worth, I asked an iPhone engineer about this at one of the iPhone Tech Talks. His answer was, "Yes, it's possible to use IB to create cells. But don't. Please, don't." |
||
|


