如何创建自定义 UISwitch?
可能的重复:
iOS 4.2 中 UISwitch 文本的更改
您好, 我想将 UISwitch 的文本更改为 YES/NO。是否可以?我看过一些示例代码,但在 IOS4.2 中似乎没有任何效果。有人可以帮忙吗?
Possible Duplicate:
Changing of UISwitch text in iOS 4.2
Hi,
I want to change the text of UISwitch to YES/NO. Is it possible? I have seen some sample codes but nothing seems to work in IOS4.2.Could someone help please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Sam Soffes 的 SSToolkit 中重新实现了 UISwitch: http://cocoacontrols.com/platforms/ios/ controls/ssswitch
它允许您更改开/关标签,以及使用飞行模式样式开关。
There's a reimplementation of UISwitch in Sam Soffes' SSToolkit: http://cocoacontrols.com/platforms/ios/controls/ssswitch
It lets you change the on/off labels, as well as using an airplane mode style switch.
是的,您可以更改颜色或文本,这就像 UISwitch 一样,并且可以在自定义 UIView 类的帮助下实现。
不能自定义UISwitch。
从UIView继承UICustomSwitch。
UICustomSwitch
Yes ,you can change the color or text which will be like a
UISwitch
and can be implemented with the help of a customized UIView class.you can'nt customize UISwitch.
Inherit UICustomSwitch from UIView.
UICustomSwitch