0

我是 iPhone 开发的新手,我正在查看图片中显示的内容以允许用户编写输入。但我找不到它到底是什么!那些是某种特殊的 UITextFields 吗?它们是一种特殊的 UITableView 吗?它是什么?

我在找什么

4

3 回答 3

3

这是一个带有自定义 UITableViewCell 的 UITableView,其中包含 UITextFields。您可以通过从自定义 XIB 文件中加载 UITableViewCell 轻松完成此操作,您已在其中删除了 UITextFields。至于您在每个字段中看到的“提示”,那就是 UITextField 的“占位符”属性。

于 2012-05-23T16:55:43.817 回答
1

这些是带有自定义表格单元格的分组表格视图,其中包含文本字段和单行蚀刻分隔符。确保将样式设置为“分组”

于 2012-05-23T16:56:39.050 回答
0

The above basically consist of UItableviewCell with a Uitextfield within it.

If you are on ios5 (which i assume you will be), you can add UItableviewcontroller from you Interface Builder and from there, taking the advice to set the style of the table to "grouped".

you should have the similar outlook of the above for the background.

In here, if you select a cell you should have the option to set a few different style to your uitableview cell.

If none of the default styles works for you, just select custom and add your own uitextfield or uibutton.

Note: There's a bit of difference between prototype cell.

于 2012-05-24T07:54:03.310 回答