- (void) dealloc
{
// in case you have something to dealloc, do it in this method
// in this particular example nothing needs to be released.
// cocos2d will automatically release all the children (Label)
[_targets release];
[_projectiles release];
[_nottargets release];
[_helicopters release];
[_Explosions release];
[_GameChances release];
_targets=nil;
_projectiles = nil;
_nottargets=nil;
_helicopters=nil;
_Explosions=nil;
_GameChances=nil;
[super dealloc];
}
私はこの機能を使用していますが、それは何のために使用されていますか?自動的にそれを呼び出すか、別のページに切り替えるときに最後に呼び出す必要がありますか?delloc関数は、それ自体が動作するために使用されるものですか?
理解していないと、まさにこの機能を持っていますか? –
hmmmコピーペースト – confusedMind