创建激活 UISwitch 的 UIButton

发布于 2024-12-20 10:30:06 字数 59 浏览 1 评论 0原文

正如标题所说;我如何创建一个激活 UISwitch 的 UIButton,如果它已经打开,则停用它..?

As the title says; how can i create a UIButton that activate a UISwitch, and if it already is on, then deactivate it..?

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

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

发布评论

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

评论(1

不打扰别人 2024-12-27 10:30:06

假设你有

IBOutlet UISwitch * myNiceSwitch;

一个按钮(UIButton)到你的视图中并将其连接到一个IBAction,然后激活(或者在我下面的例子中,切换)你的UISwitch:

- (IBAction) pushButtonAction: (id) sender
{
    BOOL switchEnabled = myNiceSwitch.enabled;

    myNiceSwitch.enabled = !switchEnabled;
}

应该就这么简单,是吗?

assuming you have a

IBOutlet UISwitch * myNiceSwitch;

you can drop a push button (UIButton) into your view and connect it to an IBAction which then activates (or in my case below, toggles) your UISwitch:

- (IBAction) pushButtonAction: (id) sender
{
    BOOL switchEnabled = myNiceSwitch.enabled;

    myNiceSwitch.enabled = !switchEnabled;
}

Should be as simple as that, yes?

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