gpt4 book ai didi

iphone - NSMutableArray : unrecognized selector sent to instance

转载 作者:行者123 更新时间:2023-12-03 20:26:19 25 4
gpt4 key购买 nike

我正在尝试使用 NSMutableArray 的 NSMutableArray 存储数组 int[9][9],其中存储数组中的 81 个整数:

- (void)awakeFromNib {
// initialization matrix
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
matrix[i][j] = 0;
}
}

// Creating NSMutableArray instance
TGrid = [NSMutableArray arrayWithCapacity:10];

[self saveGrid];
}

- (void)saveGrid {
NSNumber *aInt;
NSMutableArray *Grid = [NSMutableArray arrayWithCapacity:81];
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
aInt = [NSNumber numberWithInt:matrix[i][j]];
[Grid addObject:aInt];
}
}
[TGrid addObject:Grid];
}

- (IBAction)undo:(id)sender {
[TGrid removeLastObject];
NSMutableArray *Grid = [TGrid lastObject];
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
matrix[8-i][8-j] = [[Grid lastObject] intValue];
[Grid removeLastObject];
}
}
}

当 awakeFromNib 方法首次调用 saveGrid 时,它会起作用。但是当我更改矩阵时,它再次调用 saveGrid,这次我收到此错误:

* Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[CALayerArray addObject:]: unrecognized selector sent to instance 0x4b36ce0'

我需要你的帮助!谢谢!

最佳答案

您需要保留 TGrid !否则,它将被自动释放池释放,并且可能有一个 CALayer 在内存中占据它的位置!

最好的选择是创建一个带有保留属性的属性并访问self.TGrid不要忘记在最后释放它(dealloc)

编辑它被释放是因为每个实例创建者类方法都提供 Autoreleased 实例(这是每个人都应该遵循的规则,Apple 在整个 SDK 中也确实遵循)。

关于iphone - NSMutableArray : unrecognized selector sent to instance,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4562556/

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