如何在 UIPickerView 标签旁边获得复选标记?

发布于 2024-10-07 16:09:56 字数 162 浏览 3 评论 0 原文

Safari 中显示的 UIPickerView 在当前选项旁边有一个复选标记。有没有内置的方法来实现这个,还是我必须自己编程?如果我确实必须创建它,任何人都可以向我指出一些代码来执行此操作吗?谢谢复选标记或勾

The UIPickerView that appears in Safari has a check mark beside the current choice. Is there a built-in way to get this, or do I have to program it up myself? If I do have to create it, can anyone point me to some code to do this? Thankscheck mark or tick

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

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

发布评论

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

评论(2

凉薄对峙 2024-10-14 16:09:56

以下是一些自定义 UIPicker 视图的官方示例代码:
http://developer. apple.com/library/ios/#samplecode/UICatalog/Introduction/Intro.html

特别是,请参阅类 PickerViewController.{h, m} 、 CustomPickerDataSource.{h, m} 和 CustomView.{h, m}在示例中。您可以创建一个类似的自定义 UIPickerView,其中包含刻度图像,该图像仅显示在所选项目的左侧,并更改所选项目的文本颜色。
另外,请记住设置 myPickerView.showsSelectionIndicator = NO; 以删除所选项目上方的半透明栏。

Here is some official sample code for customizing UIPicker view:
http://developer.apple.com/library/ios/#samplecode/UICatalog/Introduction/Intro.html

In particular, refer to classes PickerViewController.{h, m} , CustomPickerDataSource.{h, m} and CustomView.{h, m} in the example. You can create a similar custom UIPickerView with a tick image which gets displayed only to the left for the selected item and change the text color of selected item.
Also, remember to set myPickerView.showsSelectionIndicator = NO; to remove the semi-transparent bar above the selected item.

旧时模样 2024-10-14 16:09:56

您需要实现 -pickerView:viewForRow:forComponent:reusingView: 来自 UIPickerViewDelegate。

您必须创建一个视图,其中包含带有复选标记图像的 UIButton,并从 -pickerView:viewForRow:forComponent:reusingView: 返回它

You need to implement -pickerView:viewForRow:forComponent:reusingView: from the UIPickerViewDelegate.

You have to create a view, that contains a UIButton with the checkmark image, and return it from -pickerView:viewForRow:forComponent:reusingView:

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