如何在 Objective C 中使用 nsstrings 对数组进行排序
可能的重复:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对 NSDates 的 NSArray 进行排序会更容易,你可以对
字符串本身进行排序,这会让你陷入各种奇怪的情况......
It would be easier to just sort an NSArray of NSDates, you could just do
sorting the strings themselves would get you into all types of strange situations...