enemyBlobArray = [[NSMutableArray alloc] init];
for(int i = 0; i < kEnemyCount; i++) {
[enemyArray addObject:[SpriteHelpers setupAnimatedSprite:self.view numFrames:3 withFilePrefix:@"greenbox" withDuration:((CGFloat)(arc4random()%2)/3 + 0.5) ofType:@"png" withValue:0]];
}
enemyView = [enemyArray objectAtIndex:0];
我正在嘗試使此對象出現在屏幕上的對象。 我收到一條錯誤消息,說我添加的對象不能是nil
。不過,我不知道爲什麼它是nil
。SIGABRT將對象添加到數組時
'[SpriteHelpers setupAnimatedSprite:numFrames:withFilePrefix:withDuration:ofType:withValue:]'(多嘴!)返回'nil'。如果不知道這種方法的作用,我們無法幫助您! –