vote up 0 vote down star

I have a UIView that displays an image depending on how well the user did on a level, then the user has the options to continue to the next level and once they are finished with that one the UIView displays again with an image depending on how well they did

I release the UIView after the user decides they want to go to the next level and inside the UIView I'm pretty sure I release everything once I'm finished with it but when the UIView is loaded for the second time the image from the first time is still there and the second image gets put on top of it so you see both images at the same time.

I'm not sure why this is happening like I said I'm pretty sure I release everything inside the UIView and then I release the UIView when the user is finished with it

I created the UIView with Interface Builder

Any help would be appreciated

//this is the code to access the UIView
-(void)DisplayStatsForLevel:(NSInteger)level ScoreEarned:(NSInteger)pScore NumberHit:(NSInteger)pNumberHit TotalTargets:(NSInteger)pTotalTargets MedalEarned:(NSInteger)pMedalEarned BulletsFired:(NSInteger)pBulletsFired
{
switch(level)
{
	case 1:	
		[levelOne removeFromSuperview];
		[levelOne release]; levelOne = nil;
		[self.view addSubview:levelComplete];
		[levelComplete SetupScreen:pScore NumberHit:pNumberHit TotalTargets:pTotalTargets MedalEarned:pMedalEarned BulletsFired:pBulletsFired];
		break;
	case 2:
		[levelTwo removeFromSuperview];
		[levelTwo release]; levelTwo = nil;
		[self.view addSubview:levelComplete];
		[levelComplete SetupScreen:pScore NumberHit:pNumberHit TotalTargets:pTotalTargets MedalEarned:pMedalEarned BulletsFired:pBulletsFired];
		break;
	default:
		break;
}

}

//this is the code that releases the UIView
-(void)NextLevel:(NSInteger)nextLevel
{
switch (nextLevel)
{
	case 2:
		[levelComplete removeFromSuperview];
		[levelComplete release]; levelComplete = nil;
		[self.view addSubview:levelTwo];
		[levelTwo SetupLevel];
		break;
	default:
		break;
}

}

//this is the code that displays the image
switch (medalWon)
{
	case 1:
		medalImage = [UIImage imageNamed:@"Bronze.png"];
		break;
	case 2:
		medalImage = [UIImage imageNamed:@"Silver.png"];
		break;
	case 3:
		medalImage = [UIImage imageNamed:@"Gold.png"];
		break;
	case 4:
		medalImage = [UIImage imageNamed:@"Platinum.png"];
		break;
	default:
		break;
}

medal =[[UIImageView alloc] initWithFrame:medalFrame];
medal.image = medalImage;
[medalImage release];
[medal setNeedsDisplay];

[self addSubview:medal];
flag
Some code will help. Your release may just decrement the retain count but not actually lead to a dealloc. Plus Im curious how you draw your second image such that two images end up in the same spot. – mahboudz Aug 31 at 23:24
I made the UIView Generic so that it is setup the same way both times (think stats screen for a level) so the drawing of the image is exactly the same both times around, give me a few minutes and I'll post some code – Keeper Aug 31 at 23:33
So medal (imageview) ends up with two images displayed n top of each other? Could you possibly be creating two or more medal (imageviews) on top of each other? – mahboudz Sep 1 at 5:16

1 Answer

vote up 0 vote down

I tried something similar just now, and in order to get two overlapping images, I had to call this twice:

medal =[[UIImageView alloc] initWithFrame:medalFrame]; medal.image = medalImage; [medalImage release]; [medal setNeedsDisplay];

[self addSubview:medal];

Can you check and see if you are doing that?

link|flag
Technically is does get called twice after the first level it gets called for that level and then the levelComplete UIView is released so the user can play through level two, and then when level two in finshed levelComplete is called again and a medal is displayed...it seems that first instance of levelComplete isn't getting cleared out and I'm not quite sure why – Keeper Sep 1 at 5:46
In order not to get two on top of each other, you should remove medal before you add then next with a different badge. Otherwise you create two UIImageViews and add them to the same view. – mahboudz Sep 1 at 6:16
yeah I literally just figured out that I wasn't removing the Image before adding the second one, However what I'm unclear on now is why Dealloc is never getting called there is only one instance of levelComplete shouldn't dealloc get called when I removeFromSuperView? – Keeper Sep 1 at 6:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.