如何仅将 UIDatePicker 的日期添加到标签中 - 例如仅添加“28”当选择的日期是“2011年10月28日”时
Possible Duplicate:
UIDatePicker and NSDate
Can I do this and how? I simply need to get the day inputted by the user and put it into a label, rather than the whole date (e.g. old: 28/10/2011 new: 28)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的用户输入是文本,您将需要从
NSDateFormatter
开始,然后您可以从日历组件中提取日期。 (我建议通过 UIDatePicker 收集日期)If your user input is text you will need to start with an
NSDateFormatter
and then you can extract the day from the calendar components. (I recommend collecting the date through aUIDatePicker
)像这样的事情:
Something like this: