gpt4 book ai didi

ios - 如何显示时间 08 :00:00 to 8 am using swift

转载 作者:搜寻专家 更新时间:2023-11-01 06:19:42 25 4
gpt4 key购买 nike

我收到的字符串时间为 08:00:00,我需要将其显示为上午 8 点。我不知道该怎么做,请大家帮助我。

我不知道如何使用 NSDate 来做到这一点。

最佳答案

喜欢

objective-C

NSString *sample = @"08:00:00";
NSDateFormatter *dateFormatter =[[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"HH:mm:ss"]; // or use hh:mm:ss
NSDate *date1 = [dateFormatter dateFromString:sample];
[dateFormatter setDateFormat:@"HH a"]; // or use hh
NSString *finaldate = [dateFormatter stringFromDate:date1];
NSLog(@"%@",finaldate);

swift

var sample: String = "08:00:00"
var dateFormatter: NSDateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "HH:mm:ss" // or use hh:mm:ss
var date1: NSDate = dateFormatter.dateFromString(sample)
dateFormatter.dateFormat = "HH a" // or use hh
var finaldate: String = dateFormatter.stringFromDate(date1)
NSLog("%@", finaldate)

时间格式

// 24 hours fomat
HH -- 13, 14, etc
// 12 hours format
hh -- 01, 02, etc

关于ios - 如何显示时间 08 :00:00 to 8 am using swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36324568/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com