iOS 表单控件
我一直在尝试创建一个类似于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它不是 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.
您可以通过将文本字段放入
UITableView
的UITableViewCell
中来实现您想要的目的。然后在启动时将单元格的样式更改为:
您可以执行以下操作:通过将样式更改为“Left Detail”,直接在 Interface Builder 中进行相同的操作:
">
You can achieve what you want by putting your text field within a
UITableViewCell
of anUITableView
.Then change the style of the cell upon initiation to:
You may do the same thing directly in Interface Builder by changing style to "Left Detail":
The result: