I m using RevMobAds first time in my app using this code:
[RevMobAds startSessionWithAppID:@" "];
[RevMobAds session].testingMode = RevMobAdsTestingModeWithAds;
[[RevMobAds session]hideBanner];
RevMobBannerView ad = [[RevMobAds session] bannerView];
ad.delegate = self;
[ad loadAd];
ad.frame=CGRectMake(00, 430, 320, 50);
[self.view addSubview:ad];`
The problem is this no add is showing in the banner.Please help me.
Please try like this :
Step:1 Add RevMovAds.framework.
Step:2 In
AppDelegateMethod import#import <RevMobAds/RevMobAds.h>Step:3 Add
DelegateMethod"RevMobAdsDelegate"Step:4 Define
#define REVMOB_ID @"52f073fa09e95bbb02000761"in Prefix.pch(Create a account on RevMobAds site & get REVMOB_ID for your Application)
Step:5 Declare the method
Step:6
RevMobAdsDelegatemethodsStep:7 Import
AppDelegateMethodStep:8 Call this Ads in
-(void)ViewDidLoad