Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3323088
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:15:38+00:00 2026-05-17T23:15:38+00:00

I currently display time in 24h format, because it’s the easiest thing for me

  • 0

I currently display time in 24h format, because it’s the easiest thing for me to do right now with the data I have.

I get the time in “minutes since midnight”, so for example, 07:00 or 7:00 a.m is “420” and 21:30 or 9:30 p.m is “1290” and so on.

[NSString stringWithFormat:@"%02d:%02d - %02d:%02d", (open / 60), (open % 60), (close / 60), (close % 60)]

Is there a nice way to use NSDateFormatter to convert from 24h to 12h? I have tried a bunch of things, but I never end up with 100% correct formatting.

I have also tried with lots of if statements, only to end up with way too many lines of code, which should be completely unnecessary in my opinion for such a relatively “easy” job.

Also, no matter I try I also end up with wrong 12h formatting for hours without “1” in the beginning, for example “09:30 a.m.”, etc. I can strip this by looking for the suffix, but again this just seems to tedious and weird.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T23:15:38+00:00Added an answer on May 17, 2026 at 11:15 pm

    You should really use the system’s default date formatting:

    NSDateComponents *comps = [[NSDateComponents alloc] init];
    [comps setHour:hours];
    [comps setMinute:minutes];
    NSDate* date = [[NSCalendar currentCalendar] dateFromComponents:comps];
    NSString* dateString = [NSDateFormatter localizedStringFromDate:date dateStyle:NSDateFormatterNoStyle timeStyle:NSDateFormatterLongStyle];
    

    Or if you insist you can do

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"hh:mm a"];
    NSString* dateString = [dateFormatter stringFromDate:date];
    

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have a application which will display the time allocated to a user
I have developed a Timer component. Currently the time is being display as follows:
I can get only the currently ongoing quiz. How to display the exact time
I have an app that display's the current time when a page opens. I
currently I have a requirement to display related items in a multi level grid.
I am currently attempting to implement a custom gridview interface to display data from
I have a page that is currently using the datetime microformat to display a
I use Hibernate/Spring and a MySQL Database for my data management. Currently I display
I currently have a display template for DateTime? objects that corrects the date depending
Currently I have a function which can take the start time and end time

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.