I have a balloonGameViewController.h and another class I made called balloon.h
balloonGameViewController.h
balloon.h
I want to access some variables I set in balloon.h
Just import the balloon.h file into your balloonGameViewController
#import balloon.h
and then access the variables as usual, assuming they are public. Otherwise you have to make them public or create getters and setters.