Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 2 down vote accepted

In your AppDelegate.h

@property (assign) YouiAdClass*iADObject    
+ (AppDelegate*) sharedApplication;
+ (YouriAdClass*)sharedAd

In your AppDelegate.m

@synthesize iADObject

+ (AppDelegate*) sharedApplication
{
    return [[UIApplication sharedApplication] delegate];
}

+(YouriAdClass*)sharedAd
{
    if(iAdObject==nil){
          iADObject=[YouriAdClass new]
   }
   return iADObject;
}

Now when you want to get your object in any place just call

YouriADClass*iadObject=[[AppDelegate sharedApplication] sharedAd];

And you will get always the same pointer. Remember to import AppDelegate andYouriADClass in your header files.

share|improve this answer
Very good answer. – Jeremy1026 Jun 13 '12 at 17:41
1  
If I donot include this code in an App Delegate instead create it as seperate class and then call it. Would it create problem then? I think it is still creating a shared instance. – Maverick Jun 13 '12 at 18:41
   
In order of doing that, just check the iOS doc. Lookup how to create a singleton instance in ios. – user1447414 Jun 13 '12 at 18:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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