如何在 iOS 5.1 中以 MM-dd-yy 格式显示选取器视图? [英] How to display picker view in MM-dd-yy format in iOS 5.1?

查看:16
本文介绍了如何在 iOS 5.1 中以 MM-dd-yy 格式显示选取器视图?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

In my application i am using pickerview

My problem is that when in iOS 4.3 Picker view comes MM-dd-yy format,

in iOS 5.1 Picker view comes dd-MM-yy format,

I want MM-dd-yy format in iOS 5.1

My code is below,

I created picker view programmatically with this code,

datePicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 250, 325, 300)];
datePicker.datePickerMode = UIDatePickerModeDate;
datePicker.date = [NSDate date];

NSDate *today = [NSDate date];        
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"MM-dd-yy"];
NSString *dateString = [df stringFromDate:today];
dateString = [NSString stringWithFormat:@"%@",[df stringFromDate:datePicker.date]];

Anybody suggest me how can i resolve this issue on iOS 5.1?

解决方案

My all code works is fine,

Problem is with Settings,

My region format is set to india and change it to United state,

All works fine.....

这篇关于如何在 iOS 5.1 中以 MM-dd-yy 格式显示选取器视图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆