如何在 iPhone 上放大选取器视图?
我将 PickerView 添加到应用程序中的一个视图中,但其尺寸太小(高度)。 我发现我无法拖动使其“更长”。 那么如何改变它的大小呢?
I add a PickerView to one of my views in an app, but its size is too small(in height). I find that I cannot drag to make it "longer". How to change its size then?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
唯一的方法是调整 pickerView.frame.size.height,但你会得到一些非常糟糕的视觉效果。
我会认真考虑尝试规避此控件的既定设计。 如果您有很多项目或者您的项目对于此视图来说太大,那么 UITableView 可能就是您想要的。 它的可定制性要高得多,可以处理所有不同形状和大小的物品/单元。
The only way is by adjusting the pickerView.frame.size.height, but you'll get some pretty bad visual artifacts.
I would think long and hard about attempting to circumvent the established design of this control. If you have so many items or your items are too big for this view, a UITableView is probably what you want to go with. It's far more customizable and can handle items/cells of all different shapes and sizes.