【问题标题】:How to display time in 12 hour format in Objective-C?如何在 Objective-C 中以 12 小时格式显示时间?
【发布时间】:2012-02-14 21:07:14
【问题描述】:

我正在开发一个 iPhone 应用程序,我需要在标签中显示时间。所以我写了以下内容:

NSDate *date = [NSDate date];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"HH:mm a"];
NSString *formattedDateString = [dateFormatter stringFromDate:date];
timeLabel.text = formattedDateString;**

它以标签显示时间,但以 24 小时格式显示。

  • 示例:下午 15 点而不是下午 3 点

我想以 12 小时格式显示时间,即下午 3 点

我该怎么办?

提前致谢。

【问题讨论】:

  • 您应该以用户喜欢的格式显示时间 - 用户在设置 -> 常规 -> 日期和时间 -> 24 小时制中设置此首选项 - 否则如果您强制使用上午 12 小时/PM 显示然后你会惹恼美国以外的很多用户

标签: iphone objective-c xcode nsdate nsdateformatter


【解决方案1】:

[dateFormatter setDateFormat:@"hh:mm a"];

注意小写的 h。

【讨论】:

  • 这仅在设备设置->常规->日期和时间开启 24 小时制时有效
  • @Mona 不正确。你需要仔细检查你做了什么。并且如果它是正确的 - 它必须在特定的 iOS 版本上,在这种情况下,请向 Apple 提交错误报告。
  • 对我来说就是这种情况,我正在使用 iOS 6
  • 我怎样才能得到大写字母 AM/ PM
  • 这仅在设备的日期时间设置为 12 小时时有效。当它是 24 小时时,它仍然显示为 HH:mm
【解决方案2】:
    Date Formats a: AM/PM
    A: 0~86399999 (Millisecond of Day)

    c/cc: 1~7 (Day of Week)
    ccc: Sun/Mon/Tue/Wed/Thu/Fri/Sat
    cccc: Sunday/Monday/Tuesday/Wednesday/Thursday/Friday/Saturday

    d: 1~31 (0 padded Day of Month)
    D: 1~366 (0 padded Day of Year)

    e: 1~7 (0 padded Day of Week)
    E~EEE: Sun/Mon/Tue/Wed/Thu/Fri/Sat
    EEEE: Sunday/Monday/Tuesday/Wednesday/Thursday/Friday/Saturday

    F: 1~5 (0 padded Week of Month, first day of week = Monday)

    g: Julian Day Number (number of days since 4713 BC January 1)
    G~GGG: BC/AD (Era Designator Abbreviated)
    GGGG: Before Christ/Anno Domini

    h: 1~12 (0 padded Hour (12hr))
    H: 0~23 (0 padded Hour (24hr))

    k: 1~24 (0 padded Hour (24hr)
    K: 0~11 (0 padded Hour (12hr))

    L/LL: 1~12 (0 padded Month)
    LLL: Jan/Feb/Mar/Apr/May/Jun/Jul/Aug/Sep/Oct/Nov/Dec
    LLLL: January/February/March/April/May/June/July/August/September/October/November/December

    m: 0~59 (0 padded Minute)
    M/MM: 1~12 (0 padded Month)
    MMM: Jan/Feb/Mar/Apr/May/Jun/Jul/Aug/Sep/Oct/Nov/Dec
    MMMM: January/February/March/April/May/June/July/August/September/October/November/December

    q/qq: 1~4 (0 padded Quarter)
    qqq: Q1/Q2/Q3/Q4
    qqqq: 1st quarter/2nd quarter/3rd quarter/4th quarter
    Q/QQ: 1~4 (0 padded Quarter)
    QQQ: Q1/Q2/Q3/Q4
    QQQQ: 1st quarter/2nd quarter/3rd quarter/4th quarter

    s: 0~59 (0 padded Second)
    S: (rounded Sub-Second)

    u: (0 padded Year)

    v~vvv: (General GMT Timezone Abbreviation)
    vvvv: (General GMT Timezone Name)

    w: 1~53 (0 padded Week of Year, 1st day of week = Sunday, NB: 1st week of year starts from the last Sunday of last year)
    W: 1~5 (0 padded Week of Month, 1st day of week = Sunday)

    y/yyyy: (Full Year)
    yy/yyy: (2 Digits Year)
    Y/YYYY: (Full Year, starting from the Sunday of the 1st week of year)
    YY/YYY: (2 Digits Year, starting from the Sunday of the 1st week of year)

    z~zzz: (Specific GMT Timezone Abbreviation)
    zzzz: (Specific GMT Timezone Name)
    Z: +0000 (RFC 822 Timezone)

How to Use:

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"dd/MM/yyyy hh:mm:ss a"];
NSLog(@"%@", [dateFormatter dateFromString:@"12/12/2012 12:12:12 AM"]);

【讨论】:

    【解决方案3】:

    看看UNICODE LOCALE DATA MARKUP LANGUAGE

    猜你必须使用 KK 而不是 HH ...

    【讨论】:

    • 大写 K 显示 0 到 11 范围内的小时,而不是 1 到 12。
    【解决方案4】:

    阅读文档是一种很好的做法。

    HH- 仅在 2、3、4 点时显示 0。这不是 0-12 AM/PM 格式。

    有关详细信息,请参阅此处的“日期格式化程序”。

    在你的情况下:

    附录 F:日期格式模式

    h:mm a -> 3:00 PM
    

    【讨论】:

    • 时间显示为“16:04”,日期格式我设置为@"h:mm a"
    【解决方案5】:

    Swift 3.0

    dateFormatter.dateFormat = "hh:mm a"
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2022-08-08
      • 1970-01-01
      • 2014-04-15
      • 2012-02-11
      • 2013-09-15
      • 1970-01-01
      相关资源
      最近更新 更多