码迷,mamicode.com
首页 > 移动开发 > 详细

日期选择器(IOS开发)

时间:2014-10-23 00:09:30      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:ios   objective-c   ios开发   

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (IBAction)onclick:(id)sender {
    NSDate *theDate = self.dataPicker.date;
    
    // descriptionWithLocale 方法返回本地时间
    // currentLocale 返回当前使用者信息
    NSLog(@"the date picked is: %@", [theDate descriptionWithLocale:[NSLocale currentLocale]]);
    
    // 设定格式化格式
    // dd和DD的区别
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
    
    // 输出
    NSLog(@"the date formate is: %@",[dateFormatter stringFromDate:theDate]);
    self.label.text = [dateFormatter stringFromDate:theDate];
    
}
    

详见注释:关于dd和DD的区别就是,dd返回当前月份的第几天,而DD返回当年的第几天



日期选择器(IOS开发)

标签:ios   objective-c   ios开发   

原文地址:http://blog.csdn.net/liyakun1990/article/details/40383917

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!