在XCode中设置UISwitch的文本

发布于 2024-12-03 17:52:27 字数 73 浏览 2 评论 0原文

如何在XCode4(iOS4)中设置UISwitch左右标签的文本?

寻找解决方案,但需要源代码中的简单直接解决方案

How can I set the text of the left and right label of a UISwitch in XCode4 (iOS4) ?

Searched for a solution but need a simple direct solution in the sourcecode

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

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

发布评论

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

评论(2

相权↑美人 2024-12-10 17:52:27

我认为自定义交换机本身是不可能的,如果可能的话只能使用私有 API,并且可能会导致很多问题,具体取决于固件。 App Store 的安全方法是使用 UISlider。

Customizing the switch itself is I think impossible, and if possible only using private APIs, and could cause a lot of problems depending on the firmware. An App Store safe way is using a UISlider.

空心↖ 2024-12-10 17:52:27

来自 UISwitch 参考UISwitch 类不可自定义。

使用 UISegmentedControl 改为 2 个段和 [segControl setMomentary:NO],然后使用 - (void)setTitle:(NSString *)title forSegmentAtIndex:(NSUInteger)segment 方法设置标题。

From UISwitch Reference: The UISwitch class is not customizable.

Use a UISegmentedControl instead with 2 segments and [segControl setMomentary:NO], then use the - (void)setTitle:(NSString *)title forSegmentAtIndex:(NSUInteger)segment method to set the title.

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