0

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

4

2 回答 2

1

您需要查看 AdWhirl 教程,您可以从此处下载 教程

于 2012-01-06T05:50:10.053 回答
0

您需要在 adWhirlApplicationKey 委托中传递 AdWhirl SDK 密钥才能工作。检查链接以获取 adWhirlkey... http://chandanshetty01.blogspot.com/2011/06/integrating-ads-to-ios-apps-using.html

于 2011-06-02T04:55:56.847 回答