gpt4 book ai didi

iphone - NSMutableArray 有问题吗?

转载 作者:行者123 更新时间:2023-12-03 21:08:55 25 4
gpt4 key购买 nike

我在.h文件中初始化实例变量,

NSInteger saveValue0、saveValue1、saveValue2、saveValue3;

NSMutableArray *nodeArray;

现在在 .m 文件中,在 viewWillAppear 事件中,

saveValue0 = 0; 
saveValue1 = 2;
saveValue2 = 3;
saveValue3 = 0;

nodeArray = [[NSMutableArray alloc] initWithObjects:saveValue0, saveValue1, saveValue2, saveValue3, nil];

但是上面的变量没有插入到数组中。当我尝试使用断点查看数组中的对象时,它给了我 nodeArray 中存在 0 个对象。为什么它会给我 0 个对象。这背后有什么原因吗?

最佳答案

NSInteger 不是对象,只能将对象存储在数组中。使用 [NSNumber numberWithInteger:0] 等

关于iphone - NSMutableArray 有问题吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4624260/

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