NSInteger value changing when loading view

194 Views Asked by At

I have an NSInteger in my app delegate called healthInt. In the app delegate i have healthInt set to 100. And when the application loads the first view healthInt is still equal to 100. But when it loads the next view, healthInt is set to 0. Even though a label in that view controller (titled healthLabel) displays 100. The reason this is a problem is because what i wanna do is

-(void)viewDidLoad{
   if(appDelegate.healthInt <= 0){
   healthLabel.text = @"Dead";
  }
}

But this doesn't seem to work. And i know this is bad architecture but it's a bit too late for me to redo the entire project. If you need to see other code i'll be happy to show it to you :)

1

There are 1 best solutions below

7
On BEST ANSWER

I agree with the comment. Make sure that you appDelegate property isn't null. If it is you can use

id<UIApplicationDelegate> appDelegate = [UIApplication sharedApplication].delegate 

to get it again.

[Edit] You will have to cast the appDelegate to your class type to get "healthInt" from the delegate.

MyAppDelegate *myApp = (MyAppDelegate *)[UIApplication sharedApplication].delegate

[2nd Edit] DUH! I didn't see your example code was in your viewDidLoad. Hot Licks is right. You need to set the delegate in the view controller before you can call it.

Try this:

-(void)viewDidLoad{

appDelegate = [[UIApplication sharedApplication] delegate];
     if(appDelegate.healthInt <= 0){
     healthLabel.text = @"Dead";
    }
    }

Hope this helps.

Rob