如何更改 iPhone 中的 UISwitch 名称?
可能的重复:
如何在iPhone中自定义UISwitch按钮?
更改 < 的名称code>UISwitch (如开、关)我正在 Xib 中创建 UISwitch
,所以我想更改名称,如 yes 或 no。
Possible Duplicate:
How to customize UISwitch button in iphone?
How to change name of UISwitch
(like on,off) i am creating UISwitch
in Xib so i want to change the name like yes or no.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须创建一个自定义开关...
http://www.catamount.com/blog/1063/uicustomswitch-customizing-uiswitch-color-it-change-labels/
这应该有帮助
You will have to create a custom switch...
http://www.catamount.com/blog/1063/uicustomswitch-customizing-uiswitch-color-it-change-labels/
this should help
没有公共 API 方法可用于更改
UISwitch
上的文本。您应该使用
UISegmentedControl
或 自定义UISwitch
There is no public API method for changing the text on an
UISwitch
You should use a
UISegmentedControl
or a CustomUISwitch
我发现这个对于创建自定义开关非常有用
您可以创建自定义开关并且在苹果批准中不会有任何问题。
This one I found is very useful for creating the custom switch
You can create the custom switch and there will not be any problem in apple approval.