iPhone编程中如何处理时间控制
关于如何使用其中包含事件列表的单列自定义 UIDatePicker 的任何想法,并且用户应该能够选择其中之一?让我知道一些有关它的细节。或与之相关的示例。
谢谢
Any idea on how to customize the UIDatePicker with single column with list of events in it,and user should be able to select one among it ? Let me know some details about it. or example related to it.
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在代码中:
正是出于这个原因,UIDatePicker 具有
datePickerMode
属性。您可以使用
UIDatePickerModeTime
进行设置。在界面生成器中:
日期选择器属性窗口中的顶部属性是
模式
- 选择时间
。In code:
UIDatePicker has the
datePickerMode
property exactly for this reason.You can set it with
UIDatePickerModeTime
.In Interface Builder:
The top property in Date Picker Attributes window is
Mode
- chooseTime
.您可以使用其中任何一个
UIDatePickerModeDate
, // 根据区域设置显示月、日和年(例如,11 月 | 15 | 2007),如下所示
You can use any of these
UIDatePickerModeDate
, // Displays month, day, and year depending on the locale setting (e.g. November | 15 | 2007)Like this