Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to print the time from date picker but with the AM/PM. I can print the time, but it never prints the AM/PM. How can I do this?

share|improve this question

2 Answers

Use below lines of code

    NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
    [dateFormatter setDateFormat:@"hh:mm a"];   
    NSString *str_date = [dateFormatter stringFromDate:[NSDate date]];
    NSLog(@"str_date:%@",str_date);
share|improve this answer

You could use this document for more information NSDateFormatter Class Reference .An example could be:

NSDate* date = [NSDate date];
NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"MM/dd/yyyy"];

[formatter setTimeStyle:NSDateFormatterFullStyle];
NSLog(@"date=%@",[dateFormatter stringFromDate:date]);
share|improve this answer
Yes it help me very much ..... i actually i just want to adjust the size of date picker with 12hr and 24hr time format .. and its really help me .. Thank you – Rajesh M. Pardeshi. Nov 19 '11 at 12:13
There are also other types of time formatting options in the document I included, take a look at all of them if you think you need to. – Harri Nov 19 '11 at 12:38
If this answer helped, you should set this answer as your accepted one. – Harri Apr 19 '12 at 21:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.