gpt4 book ai didi

objective-c - 如何在 Iphone sdk 中附加两个 NSMutableArray 或使用 NSMutableArray 附加一个 NSArray?

转载 作者:太空狗 更新时间:2023-10-30 03:57:21 24 4
gpt4 key购买 nike

我需要附加两个 NSMUtableArray 谁能告诉我如何实现?

我的代码是:

NSMutableArray *array1 = [appDelegate getTextList:1];
NSArray *array2 = [appDelegate getTextList:2];
[array1 addObjectsFromArray:array2];//I am getting exception here.

非常感谢任何人的帮助。

谢谢大家,拉克希米。

最佳答案

可能发生的情况是,您的 [appDelegate getTestList:1] 实际上返回的不是 NSMutableArray,而是 NSArray。在这种情况下,仅仅通过持有指向它的指针将数组类型转换为可变数组是行不通的,而是使用:

NSMutableArray *array1 = [[appDelegate getTextList:1] mutableCopy];
NSArray *array2 = [appDelegate getTextList:2];
[array1 addObjectsFromArray:array2];

或者您可以首先将 appDelegate 中的“textList”变量存储为 NSMutableArray。我假设您有 NSArrays(或其可变版本)的 NSArray。例如。

// In the class interface
NSMutableArray *textLists;

// In the function in which you add lists to the array
NSMutableArray *newTextList;
[self populateArray:newTextList]; // Or something like that

[textLists addObject:newTextList];

注意:您可能会有不同的工作流程,但我希望您了解将实际列表存储为 NSMutableArrays 的想法。

另一个注意事项:第二种方法修改[appDelegate getTextList的NSMutableArray :1]; 返回

关于objective-c - 如何在 Iphone sdk 中附加两个 NSMutableArray 或使用 NSMutableArray 附加一个 NSArray?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3810748/

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