当前位置:  开发笔记 > 前端 > 正文

UIDatePicker和NSDate

如何解决《UIDatePicker和NSDate》经验,为你挑选了2个好方法。

我有一个来自UIDatepicker的NSDate.

IBOutlet UIDatePicker *dueDate;
NSDate *selectedDate = [dueDate date];

如何dueDate以形式检索月份int?(1月1日,2月2日等)



1> dstnbrkr..:
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [calendar components:NSMonthCalendarUnit fromDate:[dueDate date]];
NSInteger month = [components month];



2> 小智..:

-[NSCalendar components:fromDate:]例如,使用这里的例子:

http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSCalendar_Class/Reference/NSCalendar.html

推荐阅读
mobiledu2402851373
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有