0

我已经搜索和更改代码 2 天了。我正在使用 xcode 4.5 和故事板。我让 admob 在我的主视图上工作,但我已经添加了 50 多个其他视图,并且收到了一些警告并且广告不会显示。

//  ViewMain2.h

#import <UIKit/UIKit.h>
#import "GADBannerView.h"

@class GADBannerView, GADRequest;
@interface ViewMain2 : UIView 
<GADBannerViewDelegate> {
    GADBannerView *adBanner_;
}

@property (nonatomic, retain) GADBannerView *adBanner;

- (GADRequest *)createRequest;
- (UIView *)view;

@end

//////////  ViewMain2.m

#import "ViewMain2.h"
#import "GADBannerView.h"
#import "GADRequest.h"

@implementation ViewMain2

@synthesize adBanner = adBanner_;

- (UIView *)view {
    return (UIView *)self.view;
}

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
    }
    return self;
}

#pragma mark init/dealloc

// Implement viewDidLoad to do additional setup after loading the view,
// typically from a nib.
- (void)viewDidLoad {
    [super viewDidLoad];

    // Initialize the banner at the bottom of the screen.
    CGPoint origin = CGPointMake(0.0,
                                 self.view.frame.size.height -
                                 CGSizeFromGADAdSize(kGADAdSizeBanner).height);

    // Use predefined GADAdSize constants to define the GADBannerView.
    self.adBanner = [[[GADBannerView alloc] initWithAdSize:kGADAdSizeBanner
                                                    origin:origin]
                     autorelease];

    // Note: Edit SampleConstants.h to provide a definition for kSampleAdUnitID
    // before compiling.
    self.adBanner.adUnitID = @"a1512d23a796691";
    self.adBanner.delegate = self;
    [self.adBanner setRootViewController:self];
    [self.view addSubview:self.adBanner];
    self.adBanner.center =
    CGPointMake(self.window.center.x, self.adBanner.center.y);
    [self.adBanner loadRequest:[self createRequest]];
}

- (void)dealloc {
    adBanner_.delegate = nil;
    [adBanner_ release];
    [super dealloc];
}

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskPortrait;
}

#pragma mark GADRequest generation

// Here we're creating a simple GADRequest and whitelisting the application
// for test ads. You should request test ads during development to avoid
// generating invalid impressions and clicks.
- (GADRequest *)createRequest {
    GADRequest *request = [GADRequest request];

    // Make the request for a test ad. Put in an identifier for the simulator as
    // well as any devices you want to receive test ads.
    request.testDevices =
    [NSArray arrayWithObjects:
     // TODO: Add your device/simulator test identifiers here. They are
     // printed to the console when the app is launched.
     nil];
    return request;
}

#pragma mark GADBannerViewDelegate impl

// We've received an ad successfully.
- (void)adViewDidReceiveAd:(GADBannerView *)adView {
    NSLog(@"Received ad successfully");
}

- (void)adView:(GADBannerView *)view
didFailToReceiveAdWithError:(GADRequestError *)error {
    NSLog(@"Failed to receive ad with error: %@", [error localizedFailureReason]);
}

@end

我在行 -> [super viewDidLoad] 上收到警告“UIView 可能无法响应 viewDidLoad”;

我还收到一条警告“不兼容的指针类型将 ViewMain2 发送到 UIViewController 类型的参数” -> [self.adBanner setRootViewController:self];

我已经尝试了很多教程和搜索,但是故事板中的所有视图都名为 UIView,我很挣扎。谢谢你的帮助!

4

1 回答 1

0

你声明你的类是一个子类UIView

@interface ViewMain2 : UIView 

但是,您正试图将其用作UIViewController. 决定你想要哪一个 - 如果是视图控制器,则将超类更改为UIViewController,如果是视图,则不要尝试将其用作视图控制器。

于 2013-03-02T20:13:19.457 回答