如何验证 NSMutubleArray 中是否存在元素
我是 Objective-c 的新手。 我有一个 NSMutableArray 。我写了这个:
for (int i=0; i<[allCombinations count]; i++)
{
NSString *date = [[allCombinations objectAtIndex:i] objectForKey:@"keydate"];
NSString *cachdepeDate = [date substringToIndex:8];
}
How can i see if cachdepeDate is alrady exsit in my NSMutbleArray?
如果不存在如何添加?
我应该做 for 循环,还是有一个方法?
我可以对 NSMutbleArray 进行排序吗?
日期格式如下:“20110531”“YYYYMMDD”。 谢谢你!
I'm new to objective-c.
I have an NSMutableArray . I wrote this:
for (int i=0; i<[allCombinations count]; i++)
{
NSString *date = [[allCombinations objectAtIndex:i] objectForKey:@"keydate"];
NSString *cachdepeDate = [date substringToIndex:8];
}
How can i see if cachdepeDate is alrady exsit in my NSMutbleArray?
If it is not exist how do I add it?
Should I make for loop, or there is a method for this?
Can i sort the NSMutbleArray?
Dates are in this format: "20110531" "YYYYMMDD".
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用以下内容
Use the following
NSArray 已经具有
containsObject:
方法。但即使没有,写起来也很简单:NSArray already has the
containsObject:
method. But even if it didn't, this would be simple to write: