相对于另一个数组对一个数组进行排序-iphone sdk

发布于 2024-12-10 20:53:11 字数 258 浏览 0 评论 0原文

这里我有两个数组,一个数组包含名称,另一个数组包含一些链接。我完成了名称数组的排序,但我需要根据名称数组的更改对链接数组进行排序。我翻阅文档得到了一个方法,那就是:

-(void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject{

}

但是不知道如何实现。请给出任何示例代码来实现它。我不是用户,这是正确的方法。如果有的话请帮助我。

谢谢。

Here I having two arrays, one array contains names and the other contains some links. I done sorting of name array, but i need to sort the link array with respect to the changes in the name array. I got a method when I went through the documents and that is:

-(void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject{

}

But I don't know how to implement it. Please give any sample code to implement it. I'm not usre it is the right way to do. If there is any please help me.

Thanks.

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

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

发布评论

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

评论(2

你是暖光i 2024-12-17 20:53:11

是否有原因无法将结构或对象中的名称和链接组合在一起进行排序?

Is there a reason you can't combine the name and link in a struct or object for sorting together?

猫腻 2024-12-17 20:53:11

这个方法已经为 NSMutableArray 实现了,为什么要重载它呢?
我认为您应该创建一个具有 2 个属性(名称和链接)的新类,并将该类存储在一个唯一的数组中。

@interface myObject {
NSString *name;
NSString *link;
}

@property (nonatomic, retain) NSString *name;
@property (nonatomic, retain) NSString *link;

This method is already implemented for NSMutableArray, why would you overload it ?
I think you should create a new class with 2 properties (name and link) and store this class in a unique Array.

@interface myObject {
NSString *name;
NSString *link;
}

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