gpt4 book ai didi

objective-c - 替换 NSMutableArray 中的对象索引

转载 作者:太空狗 更新时间:2023-10-30 04:00:28 25 4
gpt4 key购买 nike

我有 NSMutableArray。例如有这样的对象:0、1、2。如何将对象 0 替换为对象 2 所在的索引。结果我想要带有对象的数组:1、2、0。谢谢。

最佳答案

@trojanfoe,你的回答有一个简单的错误。

根据文档,代码的第一行不返回任何内容。应该是这样,

id object = [[array objectAtIndex:0] retain];
[array removeObjectAtIndex:0];
[array insertObject:object atIndex:2];
[object release];

关于objective-c - 替换 NSMutableArray 中的对象索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8212432/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com