views:

50

answers:

1

G'day guys, I'm building an application that allows users to rapidly input numbers into a table view.

I've currently built the framework, but I'm having a bit of a hitch hooking up the view to have the keyboard load and make the text in the cell editable from a user action.

I remember there being an iOS example in the dev code somewhere, (like a year ago so it wouldn't be under NDA) where you added items in and edited them within the context of the UITableView without going to a detailed subview.

Just need a hint on how to hook up the delegates, or how to structure the code.

A: 

You can add a UITextField or UITextView to any cell. If you have custom cells, make them a delegate for their text view, or if you compose the cells in your table view delegate, then make this the text fields' delegates.

Eiko