创建激活 UISwitch 的 UIButton
正如标题所说;我如何创建一个激活 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设你有
一个按钮(UIButton)到你的视图中并将其连接到一个IBAction,然后激活(或者在我下面的例子中,切换)你的UISwitch:
应该就这么简单,是吗?
assuming you have a
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:
Should be as simple as that, yes?