UiDatePicker 显示但不显示 UIPickerView
如果我将 UIDatePicker 拖放到 IB 中的 UIView 上并运行该应用程序,则会显示日期选择器。如果我删除日期选择器,将 UIPickerView 拖放到同一 UIView 上并运行应用程序,则 UIPickerView 不会显示。有什么区别?
If I drop a UIDatePicker onto a UIView in IB and run the app, the date picker displays. If I delete the date picker, drop a UIPickerView onto the same UIView and run the app, the UIPickerView doesn't display. What is the difference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信问题可能是 UIPicker 没有什么可供选择。
UIpicker 允许用户从列表中选择一个项目。
您需要提供一些选项供用户选择,例如颜色列表,其中日期选择器允许用户选择日期,并且不需要开发人员提供可供选择的内容列表。
I believe the issue might be that the UIPicker has nothing to pick from.
The UIpicker lets the user select an item from a list.
You need to supply some options for the user to pick from such as a list of colors where as the datepicker lets the user pick a date and it doesnt need the dev to provide a list of things to pick from.