如何在 Objective C 中使用 nsstrings 对数组进行排序

发布于 2024-12-10 06:03:11 字数 613 浏览 1 评论 0原文

可能的重复:
NSArray 日期排序
如何在 iPhone 中对包含数字作为字符串的数组进行排序?< /a>

我有各种 NSDate,我将其转换为 NSString 并将其存储在数组中。 我正在尝试根据日期创建部分,同时对它进行排序。 我想知道是否可以根据数值对 NSStrings 的 NSArray 进行排序,该数组如下所示:

Array: (
10AM,
12PM,
1PM,
3PM,
9AM
)

Possible Duplicate:
NSArray of Dates sort
How to sort array having numbers as string in iPhone?

I have various NSDates which I am converting to NSString and storing it in an array.
I am trying to create sections according to the dates and I am sorting it at the same time.
I'm wondering if it is possible to sort an NSArray of NSStrings based on a number value, The array looks like :

Array: (
10AM,
12PM,
1PM,
3PM,
9AM
)

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

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

发布评论

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

评论(1

黎歌 2024-12-17 06:03:11

对 NSDates 的 NSArray 进行排序会更容易,你可以对

NSArray* sortedArray = [dateArray sortedArrayUsingSelector:@selector(compare:)];

字符串本身进行排序,这会让你陷入各种奇怪的情况......

It would be easier to just sort an NSArray of NSDates, you could just do

NSArray* sortedArray = [dateArray sortedArrayUsingSelector:@selector(compare:)];

sorting the strings themselves would get you into all types of strange situations...

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