iPhone UIButton with UISwitch functionality(具有 UISwitch 功能的 iPhone UIButton)
问题描述
有没有一种方法可以使用自定义图形来实现 UISwitch 的开关状态?或者作为另一种选择,一个具有 UISwitch 功能的 UIButton?
Is there either a way to implement UISwitch with custom graphics for the switch-states? Or as an alternative the other way round, an UIButton with UISwitch functionality?
推荐答案
UIButton
已经支持切换"功能.
UIButton
already supports a "switch" functionality.
只需在 Interface Builder 中为Selected State Configuration"设置不同的图像,并使用 UIButton
的 selected
属性来切换其状态.
Just set a different image in Interface Builder for the "Selected State Configuration", and use the selected
property of UIButton
to toggle its state.
这篇关于具有 UISwitch 功能的 iPhone UIButton的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:具有 UISwitch 功能的 iPhone UIButton
基础教程推荐
- EditText 中的 setHintTextColor() 2022-01-01
- Firebase 云消息传递令牌未生成 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- 在视图控制器的宽度上水平均匀分布 UIButton 的最简单方法? 2022-01-01
- UINavigationItem 的持久 rightBarButtonItem 属性 2022-01-01
- 从 UIWebView 访问元数据 2022-01-01
- 更改 UITableView 部分标题的颜色 2022-01-01
- 在 iOS 7 下 CCMenu 错位 2022-01-01
- UINavigationBar 隐藏按钮文本 2022-01-01
- Android - 如何在runOnUiThread 中将数据传递给Runnable? 2022-01-01