在 UIPickerView 中进行选择时如何删除蓝色突出显示
当我在修改后的选择器视图中选择一个单元格时,会出现蓝色背景颜色。 我见过的所有其他踏板都没有给我一个很好的答案。 有人有解决办法吗?
when i select a cell in my modified picker view, a blue background colour appears.
all other treads i have seen do not give me a good answer.
anyone has a solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
pickerView.showsSelectionIndicator = NO;
pickerView.showsSelectionIndicator = NO;
只需将 UITableViewCell SelectionStyle 属性设置为 UITableViewCellEditingStyleNone
Just set the UITableViewCell selectionStyle property to UITableViewCellEditingStyleNone
我在选择器视图的顶部添加了工具栏,并将自定义按钮添加为工具栏的子视图,并且选择器视图和工具栏都添加为主视图的子视图,以便您可以处理此问题。
I have add toolbar at the top of picker view and add cutom button as a sub view of toolbar and both picker view and toolbar are add as a subview of Main view so you can handle this.
我就遇到过这个人。让我们详细看看吧。要创建自定义选择器视图,您需要创建自定义 UIView 类,例如:
然后在自定义选择器视图控制器中创建一些容器,例如 NSArray,它将获取您想要在选择器视图中表示的所有 TimeAroundView 对象。因此,对于您必须执行的每个对象,
我认为 -(id)init 是填充该容器的最佳位置,因此您会得到如下所示的内容:
在您的 pickerView:viewForRow:forComponent:reusingView: 您只需从数组返回正确的元素。
这对我有用。
I've met this one. Let's get a look at it in details. To create your custom picker view, you create your custom UIView class, e.g. :
Then in your custom picker view controller you create some container, e.g. NSArray, which will get all TimeAroundView objects you want to represent in your picker view. So, for every object you must do
I think -(id)init is the best place for filling that container in, so you get something like this:
And in your pickerView:viewForRow:forComponent:reusingView: you just return proper element from array.
That works for me.