vote up 1 vote down star
3

I'm very early in the iPhone development learning process. I'm trying to get my head around various pieces. Right now I've just taken the basic NavigationController template and I'm trying to create a simple grouped table view with a couple of text fields. What I can't seem to do is to get Interface Builder to allow me to drop a UITableViewCell into a UITableView so that I can then add a text field to the Cell. Is this even possible (it would seem that its supposed to be given the fact that UITableViewCell is a draggable control)?

If not, does that mean all of that is code I will need to just write myself?

flag

50% accept rate

5 Answers

vote up 3 vote down check

You can create the cell with Interface Builder, but you have to make it a top-level object, rather than a child of the table view. Then you can return this cell in your view controller's tableView:cellForRowAtIndexPath: function.

Make sure to give the cell an identifier in Interface Builder and then use the same identifier with dequeueReusableCellWithIdentifier: (see the sample code for how this works -- the idea is that cells get re-used - the OS will only allocate as many cells as fit on the screen at once. Clever way to save memory.)

link|flag
vote up 0 vote down

Unfortunately, it doesn't really work that way - the cells in the tableview are generated by the delegate at run-time. It turns out to be very straightforward code, though. Check out the tableview example code, it's pretty easy to follow.

link|flag
vote up -5 vote down

It should be noted that the iPhone SDK is still under NDA, and therefore any questions or answers (or even telling someone that you're under the NDA) is a violation of the NDA.

link|flag
The contents of the NDA are confidential, but it is not against the NDA to say that you are under NDA. In additon, UITableView is part of Cocoa and people can be answering from their OS X expertise. – Airsource Ltd Sep 25 '08 at 17:31
vote up 5 vote down

Be careful with Boot To The Head's method. You will leak if you don't properly deal with your IBOutlets. I will try to explain this to the best of my ability without posting code (NDA). If you plan on using IB to create your cell, make the UITableViewCell it's own Xib file. Set the File's Owner as your UIViewController subclass (or UITableController). Call the IBOutlet something like UITableViewCell *cellFactory. In the UITableViewDataSource method tableView:cellForRowAtIndexPath: do the following pseudo-code;

  1. Try to dequeue a cell using the identifier you setup in IB
  2. If successful, your done. Just use the cell
  3. Else you need to create a new cell. Use the [NSBundle mainBundle] loadNibNamed:owner:options: method with your proper xib file in there. This will fill the cellFactory ivar with a fresh cell. Here comes the tricky part.
  4. set cell = cellFactory then release cellFactory and set it to nil to be sure you don't accidentally use it again. You are now safe to use your cell as normal
link|flag
vote up 0 vote down

This is a good tutorial on using the UI builder for UITableView's

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.