Could InAppSettingsKit do this, or is there another library?

Posted by cannyboy on Stack Overflow See other posts from Stack Overflow or by cannyboy
Published on 2010-06-05T12:10:22Z Indexed on 2010/06/05 12:12 UTC
Read the original article Hit count: 241

I'm trying to implement a system whereby the user is initially presented with a single tablecell, in a uitableview (grouped style), within a uinavigationview.

  ---------------
+ | add record  |
  ---------------

When they click on the cell, they are pushed onto a new screen where they fill in a few textviews (perhaps imbedded in a tableview's cells)

  ---------------
  | (name)      |
  ---------------
  | (phone num) |
  ---------------

Then when they go back, they can see the new record as well as the 'add record' cell.

  ---------------
  | record  1   |
  ---------------
+ | add record  |
  ---------------

(When they go into record 1 again there would be a delete button)

Is there any sample code or libraries which would achieve this? What about InAppSettingsKit? It's more the presentation I'm concerned with. I can handle the saving of data myself.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about objective-c