我有一个名为 Letters 的 NSMutableArray,它包含 UIImageView 子类的实例。我正在尝试遍历它们并为它们分配新值
for (int i=0 ;i<26;i++)
{
[letters objectAtIndex:i] = [[typeLetters alloc]initWithManager:self atX:startX andY:startY withSideLenght:48 andName:[letterNames objectAtIndex:i] andPng:[letterNames objectAtIndex:i]];
}
但这不起作用。Xcode 说“无法分配给表达式”,但是当我尝试在数组之外为每个数组项单独分配新值时,它可以工作。你知道为什么会这样吗?
编辑:没关系。对不起。我应该更多地研究数组。