1

我已经设置了一个带有广告横幅的测试应用程序。广告横幅是使用 AdWhirl 设置的,我使用 iAd 和 AdMob。

该应用程序工作正常,运行无错误。我现在希望仅针对其可用的特定国家/地区设置 iAd。

在 iAd 文档中,它声明

iAd Network 最近在加拿大推出。广告现已在美国、加拿大、英国、德国、意大利、西班牙、法国和日本 App Store 的应用程序中提供。请务必将您的应用配置为仅在这些国家/地区投放广告。

如何将应用程序配置为仅向使用 adWhirl 的这些国家/地区的用户显示 iAd?我想第一点是确定当时哪个广告网络正在投放广告,这可能吗?这是我的视图控制器 h 和 m 如果有任何用处,但它目前只是一个用于测试的横幅。

也可以测试这实际上是否正常工作?您可以将手机模拟器更改为就好像它来自另一个国家一样?

#import <UIKit/UIKit.h>


@interface AdTestViewController : UIViewController <AdWhirlDelegate> {
    AdWhirlView *adView;
}

@property (strong, nonatomic) UIWindow *window;
@property (nonatomic,retain) AdWhirlView *adView;

@end

小鬼文件

#import "AdTestViewController.h"
#import "Constants.h"
#import "AdTestAppDelegate.h"
#import "AdWhirlView.h"

@interface AdTestViewController ()

@end

@implementation AdTestViewController

@synthesize adView;

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.adView = [AdWhirlView requestAdWhirlViewWithDelegate:self];
    self.adView.autoresizingMask =
    UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin;
    [self.adView setDelegate:self];
    [self.view addSubview:self.adView];
    NSLog(@"Ad View Added");
}

#pragma mark - Delegate Methods
- (NSString *)adWhirlApplicationKey {
    NSLog(@"adWhrilApplicationKey");
    return kSampleAppKey;
}

- (UIViewController *)viewControllerForPresentingModalView {
    NSLog(@"viewControllerForPresentingModalView");
    return self;

}

- (void)adWhirlDidReceiveAd:(AdWhirlView *)adWhirlView {
    NSLog(@"adWhrilDidReceiveAd");
    // Used to animate the ad from the top to bottom 
    //[UIView beginAnimations:@"AdWhirlDelegate.adWhirlDidReceiveAd:" context:nil];
    //[UIView setAnimationDuration:0];

    CGSize adSize = [adWhirlView actualAdSize];
    CGRect newFrame = adWhirlView.frame;
    newFrame.size = adSize;
    newFrame.origin.x = (self.view.bounds.size.width - adSize.width)/ 2;
    newFrame.origin.y=  self.view.frame.size.height - adSize.height;
    adWhirlView.frame = newFrame;

    [UIView commitAnimations];
}

-(void)adWhirlDidFailToReceiveAd:(AdWhirlView *)adWhirlView usingBackup:(BOOL)yesOrNo {

}

@end

AdWhril 设置 在此处输入图像描述

4

1 回答 1

1

adWhirl 已弃用,中介功能现已在最后一个 adMob SDK 中可用。使用它,您可以将广告提供商的广告百分比转换为在不同国家/地区展示。查看 adMob 网站上的文档。

于 2013-01-06T21:18:42.827 回答