Srini
Srini

Reputation: 387

AdWhirl implementation in iPhone Cocoa touch

i'm starting to implement AdWhirl in my application. i follow the instructions which is belong to adwhirl but i cant see any ad in my application.i add the following methods in my viewcontroller class

- (void)viewDidLoad {
    [super viewDidLoad];
 AdWhirlView *adView=[AdWhirlView requestAdWhirlViewWithDelegate:self];
 [self.view addSubview:adView];
}

-(NSString *) adWhirlApplicationKey{
 return @"myAdWhirlKey";
}

-(UIViewController *) viewControllerForPresentingModalView{
 return self;
}

i doesn't display anything. please help how to implement AdWhirl

Upvotes: 0

Views: 851

Answers (2)

user1047415
user1047415

Reputation:

you need to see AdWhirl tutorial and you can download it from here Tutorial

Upvotes: 1

Chandan Shetty SP
Chandan Shetty SP

Reputation: 5117

You need to pass the AdWhirl SDK key in adWhirlApplicationKey delegate to work. check the link to get adWhirlkey... http://chandanshetty01.blogspot.com/2011/06/integrating-ads-to-ios-apps-using.html

Upvotes: 0

Related Questions