Build form in tableviewcontrol in ipad
I am looking for a tutorial to build a form in tableviewcontrol using row/cell开发者_如何转开发 property in ipad. All I can find are tutorials using iPad numbers. Any links to such tutorial where I can build form in tableview control row/cell by adding properties like textbox, pop over, pickerview etc ?
See Apple's advanced TableView sample code.
If you want input fields inside of your table, then find your cellForRowAtIndexPath method, and add your UITextField or UITextArea or whatever input you want as a subview of the cell.
精彩评论