UISwitch视图显示UITextField、Labels
我该如何实现 UISwitch 来显示某些内容,例如 UITextField 和 UISwitch?标签何时打开?
How do I go about implementing a UISwitch to display certain stuff, for example UITextField & labels when its switched on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需将相关视图的
隐藏
属性(例如UITextField
和UILabel
实例)设置为UISwitch的状态
由You can just set the
hidden
properties of the views in question, e.g. theUITextField
andUILabel
instances, to the state of theUISwitch
by您可以在 Interface Builder 中连接到 UISwitch 的
valueChanged
方法。这是 教程可能会有所帮助。You can hook up to the UISwitch's
valueChanged
method in Interface Builder. Here's a tutorial that may help.