How to convert 24 hr String time into 12 hr time String format

后端 未结 3 1416
清酒与你
清酒与你 2021-02-04 09:25

I have time in NSString like \"15:15\"

I want to covert this NSString time into 12 hr NSString(i.e \"3:15 PM\").

3条回答
  •  萌比男神i
    2021-02-04 10:22

    Check out this SO question: NSDateFormatter dateFromString and iPhone in 24 Hour Format Confusion

    You should be able to use to use NSDateFormatter to format the style of time you want, then read in the string to the formatter and pull it back out in your desired format.

提交回复
热议问题