iOS 表单控件

发布于 2024-12-27 08:38:40 字数 348 浏览 0 评论 0原文

可能的重复:
如何创建可编辑的 UITableView就像通讯录应用程序那样? (iPhone)

我一直在尝试创建一个类似于 iOS 联系人应用程序的表单,其中每一行左侧都有一个字段名称,右侧有一个输入字段。这不是iOS的内置控件吗?如果没有,它实际上是如何完成的?

谢谢。

Possible Duplicate:
How to create an editable UITableView like that of the Contacts app? (iPhone)

I have been trying to create a form that looks similar to the iOS contacts app, where each row has a field name on the left and entry field on the right. Is this not a built in control for iOS? If not, how is it actually done?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

才能让你更想念 2025-01-03 08:38:41

它不是 ios 的内置控件。如果您想创建它,您可以创建一个带有自定义单元格的表格视图,其中您可以将 UILabel 放在单元格的左侧,并将 UITextField 放在单元格的右侧进行编辑。

It's not a built in control for ios.if you want to create this you can create a table view with custom cell in which you can put UILabel on the left side of the cell and put UITextField on the right side of the cell for editing.

最初的梦 2025-01-03 08:38:41

您可以通过将文本字段放入 UITableViewUITableViewCell 中来实现您想要的目的。

然后在启动时将单元格的样式更改为:

cell.style = UITableViewCellStyleValue2;

UITableViewCellStyleValue2 左侧带有标签的单元格的样式
单元格的一侧带有右对齐的蓝色文本;在
单元格的右侧是另一个带有较小文本的标签,即
左对齐且黑色。电话/联系人应用程序使用以下单元格
这种风格。适用于 iOS 3.0 及更高版本。宣布于
UITableViewCell.h。
来源

您可以执行以下操作:通过将样式更改为“Left Detail”,直接在 Interface Builder 中进行相同的操作:

">

在此处输入图像描述

You can achieve what you want by putting your text field within a UITableViewCell of an UITableView.

Then change the style of the cell upon initiation to:

cell.style = UITableViewCellStyleValue2;

UITableViewCellStyleValue2 A style for a cell with a label on the left
side of the cell with text that is right-aligned and blue; on the
right side of the cell is another label with smaller text that is
left-aligned and black. The Phone/Contacts application uses cells in
this style. Available in iOS 3.0 and later. Declared in
UITableViewCell.h.
Source

You may do the same thing directly in Interface Builder by changing style to "Left Detail":

enter image description here

The result:

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文