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:
|
|||||||||||
|
|
Actually, since you are building the cell in Interface Builder, just set the reuse identifier there: Or if you are running Xcode 4, check the Attributes inspector tab:
(Edit: After your XIB is generated by XCode, it contains an empty UIView, but we need a UITableViewCell; so you have to manually remove the UIView and insert a Table View Cell. Of course, IB will not show any UITableViewCell parameters for a UIView.) |
|||||||||||||||||
|
|
I can't remember where I found this code originally, but it's been working great for me so far.
Example Interface Builder setup...
|
|||
|
|
|
Now, in iOS 5 there is an appropriate UITableView method for that:
|
|||||||||||
|
|
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. |
|||||||||
|
|
As of iOS circa 4.0, there are specific instructions in the iOS docs that make this work super-fast: Scroll down to where it talks about subclassing UITableViewCell. |
|||
|
|
|
Here is another option:
|
|||||
|
|
I create my custom view cells in a similar manner - except I connect the cell through an IBOutlet. The The BUT... In all cases the I have read various places about using Apart from explicitly calling some initialization method in the |
|||
|
|
A while back I found a great blog post on this topic at blog.atebits.com, and have since started using Loren Brichter ABTableViewCell class to do all of my UITableViewCells. You end up with a simple container UIView to put all of your widgets, and scrolling is lightning fast. Hope this is useful. |
|||
|
|
|
This technique also works and doesn't require a funky ivar in your view controller for memory management. Here, the custom table view cell lives in a xib named "CustomCell.xib".
|
|||||||||||||
|
|
Louis method worked for me. This is the code I use to create the UITableViewCell from the nib:
|
||||
|
|
|
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." |
|||||||||||
|
|
From the UITableView docs regarding Overriding -reuseIdentifer yourself is risky. What happens if you have two subclasses of your cell subclass, and use both of these in a single table view? If they send the reuse identifier call onto super you'll dequeue a cell of the wrong type.............. I think you need to override the reuseIdentifier method, but have it return a supplanted identifier string. Or, if one has not been specified, have it return the class as a string. |
|||
|
|
|
The gustavogb solution doesn't work for me, what I tried is :
It seems to work. The blogTableViewCell is the IBOutlet for the cell and ChainesController is the file's owner. |
|||
|
|
|
I followed Apple's instructions as linked by Ben Mosher (thanks!) but found that Apple omitted an important point. The object they design in IB is just a UITableViewCell, as is the variable they load from it. But if you actually set it up as a custom subclass of UITableViewCell, and write the code files for the subclass, you can write IBOutlet declarations and IBAction methods in the code and wire them up to your custom elements in IB. Then there is no need to use view tags to access these elements and you can create any kind of crazy cell you want. It's Cocoa Touch heaven. |
|||
|
|
protected by jtbandes Aug 23 '11 at 9:07
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.


