UISwitch视图显示UITextField、Labels

发布于 2024-11-25 07:47:50 字数 64 浏览 2 评论 0原文

我该如何实现 UISwitch 来显示某些内容,例如 UITextField 和 UISwitch?标签何时打开?

How do I go about implementing a UISwitch to display certain stuff, for example UITextField & labels when its switched on?

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

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

发布评论

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

评论(2

怪我入戏太深 2024-12-02 07:47:50

您只需将相关视图的隐藏属性(例如UITextFieldUILabel实例)设置为UISwitch的状态

textField.hidden = switch.on;
label.hidden = switch.on;

You can just set the hidden properties of the views in question, e.g. the UITextField and UILabel instances, to the state of the UISwitch by

textField.hidden = switch.on;
label.hidden = switch.on;
初相遇 2024-12-02 07:47:50

您可以在 Interface Builder 中连接到 UISwitch 的 valueChanged 方法。这是 教程可能会有所帮助。

You can hook up to the UISwitch's valueChanged method in Interface Builder. Here's a tutorial that may help.

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