本文介紹了如何在 iOS 5.1 中以 MM-dd-yy 格式顯示選取器視圖?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
限時送ChatGPT賬號..
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 格式顯示選取器視圖?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!