相对于另一个数组对一个数组进行排序-iphone sdk
这里我有两个数组,一个数组包含名称,另一个数组包含一些链接。我完成了名称数组的排序,但我需要根据名称数组的更改对链接数组进行排序。我翻阅文档得到了一个方法,那就是:
-(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是否有原因无法将结构或对象中的名称和链接组合在一起进行排序?
Is there a reason you can't combine the name and link in a struct or object for sorting together?
这个方法已经为 NSMutableArray 实现了,为什么要重载它呢?
我认为您应该创建一个具有 2 个属性(名称和链接)的新类,并将该类存储在一个唯一的数组中。
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.