iPhone 中的时间间隔为 30 分钟

发布于 2024-11-15 12:11:27 字数 584 浏览 2 评论 0原文

我有 2 个 NSString ,分别是 startTime 和 endTime 。

开始时间 = 上午 10:00
endTime = 7:00 PM

现在我想以 30 分钟为间隔分割时间,这样我就可以获得这样的时间:

10:00 AM 上午 10:30 上午 11:00 上午 11:30 ......直到晚上 7:00。

我正在尝试这样的事情:

NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init];
[timeFormat setDateFormat:@"HH:mm"];
NSDate* fromTime = [timeFormat dateFromString:startTime];
NSDate* toTime = [timeFormat dateFromString:endTime];

但我从 fromTime = 1970-01-01 6:00:00 +0000 获取 startTime = 11:30 的值代码>

有人有任何想法,怎么做吗???

I have 2 NSString say startTime and endTime.

startTime = 10:00 AM
endTime = 7:00 PM

Now i want to split the time in the interval of 30mins, so i can get time like this:

10:00 AM
10:30 AM
11:00 AM
11:30 AM
.......... till 7:00 PM.

i'm trying something like this :

NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init];
[timeFormat setDateFormat:@"HH:mm"];
NSDate* fromTime = [timeFormat dateFromString:startTime];
NSDate* toTime = [timeFormat dateFromString:endTime];

But i'm getting the from fromTime = 1970-01-01 6:00:00 +0000 for the value of startTime = 11:30

Anybody has any idea,how to do it???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑脸一如从前 2024-11-22 12:11:27

NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init];
[timeFormat setDateFormat:@"hh:mm a"];
NSDate* fromTime = [timeFormat dateFromString:startTime];
NSDate* toTime = [timeFormat dateFromString:endTime];

NSLog(@"Start time %@",fromTime);
NSLog(@"End time %@",toTime);

NSDate *dateByAddingThirtyMinute;

dateByAddingThirtyMinute = [fromTime dateByAddingTimeInterval:1800];

NSLog(@"Time after 30 min %@",dateByAddingThirtyMinute);

尝试上面的代码。


NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init];
[timeFormat setDateFormat:@"hh:mm a"];
NSDate* fromTime = [timeFormat dateFromString:startTime];
NSDate* toTime = [timeFormat dateFromString:endTime];

NSLog(@"Start time %@",fromTime);
NSLog(@"End time %@",toTime);

NSDate *dateByAddingThirtyMinute;

dateByAddingThirtyMinute = [fromTime dateByAddingTimeInterval:1800];

NSLog(@"Time after 30 min %@",dateByAddingThirtyMinute);

Try the above code.

温馨耳语 2024-11-22 12:11:27

可能只是您在使用 dateFromString 时没有提供足够的信息。如果您只给出 hh:mm,则日期的其余部分可能会给您带来一些问题。

如果您只需要显示 30 分钟的间隔,并且只是在同一天的两个时间之间(并且日期并不重要),那么完全避免日期并仅手动计算两者之间的间隔可能是明智的。您可以轻松地将开始时间和结束时间解析为小时和分钟整数,然后从那里开始。

希望这有帮助。

It may just be that you're not giving enough information when using dateFromString. If you're only giving the hh:mm, the rest of the date could cause several issues for you.

If you only need to show intervals of 30 minutes, and it's simply between two times in the same day (and dates don't matter), it would probably be wise to avoid dates altogether and just manually calculate the intervals between the two. You could easily parse the start time and end times into an hours and minutes integers, and then go from there.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文