gpt4 book ai didi

objective-c - 从 nsstring 中分离日期和时间的最佳方法是什么

转载 作者:行者123 更新时间:2023-11-28 18:03:58 26 4
gpt4 key购买 nike

我有一个 NSStirng,其中包含 2013-01-08 07:52:00 +0000。我想在不同的 NSStrings 中分隔日期和时间。

感谢任何帮助。

最佳答案

来自服务器的格式是否一致?

您是否需要使用日期和时间来进行排序等...或进行时间添加或只是显示它们?

如果您只是显示它们并且字符串的格式不会改变,那么您可以这样做...

//assumption 1: the format is <date>space<time>space<timezone>
//assumption 2: the only purpose is to display the values sent from the server.

NSString *dateString = @"2013-01-08 07:52:00 +0000";
NSArray *components = [dateString componentsSeparatedByString:@" "];
NSString *date = components[0];
NSString *time = components[1];

关于objective-c - 从 nsstring 中分离日期和时间的最佳方法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14211135/

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