创建设置应用程序中的邮件设置等设置

时间:2010-06-05 21:40:43

标签: iphone uitableview settings

我想创建一些设置,就像设置应用中的邮件设置一样。这些允许您将邮件帐户添加到表的末尾

First screen
  ---------------
+ | add account |
  ---------------

当他们点击单元格时,他们会被推到一个新的屏幕上,在那里他们填写几个文本区域

Second screen
  -----------------
  |(cancel) (save)|    - the toolbar
  -----------------

  ----------------
  | email        |
  ----------------
  |another field |
  ----------------

然后当他们返回时,他们可以看到新记录以及“添加帐户”单元格。

First screen
  ---------------
  | email   1   |
  ---------------
+ | add account |
  ---------------

它需要在应用内而不是在“设置”应用中。最好的方法是什么?

2 个答案:

答案 0 :(得分:2)

UITableView(Controller)和UINavigationController在这里是你的朋友......它们非常全面,所以请务必完成样本和指南。

答案 1 :(得分:1)

查看Apple的CoreDataBooks示例:http://developer.apple.com/iphone/library/samplecode/CoreDataBooks/Introduction/Intro.html#//apple_ref/doc/uid/DTS40008405-Intro-DontLinkElementID_2

它将让您了解如何设置组UITableView以及UITableViewController。