以编程方式显示和隐藏 iPhone/Cocoa Touch 的文本字段
我正在尝试为我的 UIViewController 创建一个自定义编辑器。建议我隐藏文本字段,直到用户按下编辑键。您如何以编程方式执行此操作?
换句话说,当用户点击“编辑”时,我希望标签消失并出现文本字段。
谢谢,
I'm trying to create a custom editor for my UIViewController. It was suggested that I hide the textfields until the user presses the Edit key. How do you do this programmatically?
In other words when the user hits 'Edit' I would like the label to disappear and the Textfield to appear.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以利用
hidden
属性快速将某些内容变为可见或不可见。另一种选择是将 alpha 设置为 0 以隐藏,将 alpha 设置为 1 以显示。如果您想让动画淡入和淡出小部件以实现平滑过渡,这将非常有用。
You can make use of the
hidden
property for quickly turning something visible or invisible.Another option is to set alpha to 0 to hide and 1 to show. This is beneficial if you want to have an animation fade the widgets in and out for a smooth transition.
您只需要使用
hidden
属性即可。You just need to use the
hidden
property.