I am trying to format time in 12 hours mode, but using a.m./p.m.
If I use the following code:
NSDateFormatter *formataTempo = [[NSDateFormatter alloc] init];
[formataTempo setDateFormat:@"hh:mm:ss a"];
I get something like this:
10:59:56 AM
But what I want is:
10:59:56 a.m.
What format string I should use?
Thanks in advance,
Elga.