gpt4 book ai didi

objective-c - 我想要 HH :mm format from string in cocoa 的时间

转载 作者:行者123 更新时间:2023-12-03 17:55:22 25 4
gpt4 key购买 nike

我想获取两个时间值,它们的字符串格式如下:

例如: NSString *fromTime=@"11:30";
NSString *toTime=@"12:30";

我想要时间格式,我尝试使用 NSDateFormatter,

   `NSDateFormatter *df=[[NSDateFormatter alloc] init];
[df setDateFormat:@"HH:mm"];
NSDate *from=[df dateFromString:fromTime];
NSLog(@"from %@",from);
NSDate *to=[df dateFromString:toTime];
NSLog(@"to %@",to);`

输出: 从 1970-01-01 06:00:00 +0000 至 1970-01-01 07:00:00 +0000

但我只想要时间。

最佳答案

NSDate 是一个完整的日期对象,它将始终包含完整的日期和时间。它还会返回以 GMT 作为时区的日期(时间后面的 +0000 部分)。

您可以忽略日期部分并仅使用时间部分。

关于objective-c - 我想要 HH :mm format from string in cocoa 的时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14477782/

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