Objective-C 中的 NSMutableArray 插入

发布于 2024-11-26 00:17:25 字数 402 浏览 3 评论 0原文

我使用以下代码将 NSNumber 添加

到头文件中的 NSMutableArray:

NSNumber *timeInSeconds;
NSMutableArray *time;

在代码中:

int total=6;
timeInSeconds=[NSNumber numberWithInt:total];
[time addObject:timeInSeconds];

但是,在调试时,我注意到如果我这样做,

print (int) [time count]

我会得到 0 的输出...不知道为什么会发生这种情况...任何人都可以请帮助我?

谢谢。

I am using the following code to add NSNumber to a NSMutableArray

in header file:

NSNumber *timeInSeconds;
NSMutableArray *time;

in code:

int total=6;
timeInSeconds=[NSNumber numberWithInt:total];
[time addObject:timeInSeconds];

However, while debugging, I noticed that if I do

print (int) [time count]

I get an output of 0 ... Not sure why this is happening...can anyone kindly help me ?

Thanks.

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

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

发布评论

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

评论(1

找个人就嫁了吧 2024-12-03 00:17:25

我没有看到您在哪里分配了时间。在某些时候您需要调用

time = [[NSMutableArray alloc] init];

或其他一些分配和初始化方法。

I don't see where you allocated time. At some point you need to call

time = [[NSMutableArray alloc] init];

or some other allocation and initialization method.

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