替换二维嵌套 NSMutableArray 内的对象

发布于 2024-10-02 14:57:51 字数 668 浏览 3 评论 0原文

我在替换 NSMutableArray 中的对象时遇到问题,该对象是另一个 NSMutableArray 中的对象。

接口中:

NSMutableArray *tiles;

在实现中:

tiles = [[NSMutableArray alloc] initWithObjects: [NSMutableArray arrayWithObjects: @"0",@"0",@"0",@"0",@"0",nil], [NSMutableArray arrayWithObjects: @"0",@"0",@"0",@"0",@"0",nil], [NSMutableArray arrayWithObjects: @"0",@"0",@"0",@"0",@"0",nil],nil];

[[tiles ObjectAtIndex:1] ReplaceObjectAtIndex:1 withobject:@"1"];

它确实可以编译,但出现错误:“NSMutableArray 可能无法响应 ObjectAtIndex:”,在这一行:
[[tiles ObjectAtIndex:1] ReplaceObjectAtIndex:1 withobject:@"1"];

显然这是行不通的。

这只是语法问题吗?还是有什么事情做不到?

谢谢。

I'm having problem with replacing objects inside NSMutableArray which is an object inside another NSMutableArray.

In the interface:

NSMutableArray *tiles;

In the implementation:

tiles = [[NSMutableArray alloc] initWithObjects:
[NSMutableArray arrayWithObjects: @"0",@"0",@"0",@"0",@"0",nil],
[NSMutableArray arrayWithObjects: @"0",@"0",@"0",@"0",@"0",nil],
[NSMutableArray arrayWithObjects: @"0",@"0",@"0",@"0",@"0",nil],nil];

[[tiles ObjectAtIndex:1] replaceObjectAtIndex:1 withobject:@"1"];

It does compile but with an error: "NSMutableArray may not respond to ObjectAtIndex:", on this line:
[[tiles ObjectAtIndex:1] replaceObjectAtIndex:1 withobject:@"1"];

Obviously it does not work.

Is it just a syntax problem? Or is it something can't be done?

Thanks.

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

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

发布评论

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

评论(1

束缚m 2024-10-09 14:57:51

尝试使用 objectAtIndex (用小写 o 表示对象)。

try with objectAtIndex (with a lowercase o for object).

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