I am new to iPhone development. My objective is to implement a singleton class for iAd, so that I share the single instance of iAd over multiple view controllers?
Any help on the implementation side will be much appreciated?
|
I am new to iPhone development. My objective is to implement a singleton class for iAd, so that I share the single instance of iAd over multiple view controllers? Any help on the implementation side will be much appreciated? |
|||
|
|
|
In your AppDelegate.h
In your AppDelegate.m
Now when you want to get your object in any place just call
And you will get always the same pointer. Remember to import AppDelegate andYouriADClass in your header files. |
|||||||||||
|