【问题标题】:iAd -- cannot click banneriAd -- 无法点击横幅
【发布时间】:2011-07-25 10:16:08
【问题描述】:

我正在创建一个通用应用模板。

此模板需要支持可选的 iAd,以及可选的所有方向。

我编写了一个解决方案,却发现了一个奇怪的错误。在某些情况下,我无法点击横幅

然后我重新编写了另一个版本,整理了所有内容,并删除了大部分代码以显示最小的测试用例失败。

https://github.com/p-i-/iAdUniversalTemplate/commit/2c829d268a9452e1a054802e7ccb9cde5de17853

在这个新代码中,只有 3 个视图:窗口、uberview(视图控制器的视图)和广告横幅

因此,横幅在投放后正确显示,自动旋转工作正常... 我已经记录了每个框架和边界,一切都应该是这样的。

但它没有响应点击(好吧,点击因为我在模拟器中)

可能有什么问题?我开始怀疑在从项目中删除 XIB 并从代码中实现窗口和视图控制器时,我错过了一些东西或将一些东西连接到前面。

多汁的代码块:

AppDelegate.m

- (BOOL) application: (UIApplication *) application 
didFinishLaunchingWithOptions: (NSDictionary *) launchOptions 
{
    NSLog(@"--> ___PROJECTNAME___AppDelegate:didFinishLaunchingWithOptions...");

    // FIXED: now entry in info.plist hides SB BEFORE launch
    [[UIApplication sharedApplication] setStatusBarHidden: (SHOW_SB ? NO : YES)];

    CGRect appFrame = [UIScreen mainScreen].applicationFrame;

    // windowRect must start at 0, 0
    // if (SHOW_SB == YES), appFrame will be '{{0, 20}, {320, 460}}'
    CGRect windowRect = CGRectMake(0, 0, appFrame.size.width, appFrame.size.height);

    self.window = [[[UIWindow alloc] initWithFrame: windowRect] autorelease];

    self.viewController = [ [ [ ___PROJECTNAME___ViewController alloc ] init ] autorelease ];

    [self.window setRootViewController: viewController];

    // triggers loadView
    [self.window makeKeyAndVisible];

    return YES;
}

iAdVC.m

- (void) loadView 
{       
    self.uberView = [[[UIView alloc] initWithFrame: [UIScreen mainScreen].applicationFrame] autorelease];
    self.uberView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
    self.uberView.autoresizesSubviews = YES;
    self.uberView.clipsToBounds = YES;

    //UIWindow * w = self.view.window;
    //w.clipsToBounds = YES;

    [self setView: uberView];

    showingBanner = NO;
    adBannerView = nil;
    if (IADS_ENABLED)
    {
        NSString * P = ADBannerContentSizeIdentifierPortrait;
        NSString * L = ADBannerContentSizeIdentifierLandscape;

        self.adBannerView = [[[ADBannerView alloc] initWithFrame:CGRectZero] autorelease];

        self.adBannerView.delegate = self;
        self.adBannerView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleTopMargin;
        self.adBannerView.requiredContentSizeIdentifiers = [NSSet setWithObjects: P, L, nil];
        self.adBannerView.currentContentSizeIdentifier = UIInterfaceOrientationIsPortrait( self.interfaceOrientation ) ? P : L ;

        [uberView addSubview: adBannerView];
    }

    UIWindow * w = [[UIApplication sharedApplication] keyWindow];

    w.userInteractionEnabled = YES;
    self.uberView.userInteractionEnabled = YES;
    self.adBannerView.userInteractionEnabled = YES;

    w.clipsToBounds = YES;
    self.uberView.clipsToBounds = YES;
    self.adBannerView.clipsToBounds = YES;

    w.opaque = YES;
    self.uberView.opaque = YES;
    self.adBannerView.opaque = YES;
}

// - - - - - - - - - - - - - - - - - - - - - - - - - -

#pragma mark Autorotate

- (BOOL) shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation) interfaceOrientation 
{   
    return YES;
}

// - - - - - - - - - - - - - - - - - - - - - - - - - -

- (void) willRotateToInterfaceOrientation: (UIInterfaceOrientation) newOrientation 
                                 duration: (NSTimeInterval) duration
{
    bool isLandscape = UIInterfaceOrientationIsLandscape(newOrientation);
    self.adBannerView.currentContentSizeIdentifier = isLandscape ? ADBannerContentSizeIdentifierLandscape : ADBannerContentSizeIdentifierPortrait ;
}


#pragma mark Banner

// - - - - - - - - - - - - - - - - - - - - - - - - - -

- (void) bannerViewDidLoadAd: (ADBannerView *) banner 
{   
    if (! showingBanner)
    {
        showingBanner = YES;
        // ... (optionally animate in)
    }
}


// - - - - - - - - - - - - - - - - - - - - - - - - - -

- (void) bannerView: (ADBannerView *) banner 
didFailToReceiveAdWithError: (NSError *) error
{
    NSLog(@"FAIL");

    if (showingBanner)
    {
        showingBanner = NO;
        // ... (optionally animate out)
    }
}

// - - - - - - - - - - - - - - - - - - - - - - - - - -

-(BOOL) bannerViewActionShouldBegin: (ADBannerView *) banner 
               willLeaveApplication: (BOOL) willLeave
{
    return YES; // doesnt get hit
}

// = = = = = = = = = = = = = = = = = = = = = = = = = = 

【问题讨论】:

  • 您是否尝试过将横幅添加到窗口中间(将正确的 CGRect 输入 initWithFrame),以确保它不会被您可能在其他地方添加的其他一些不可见视图遮挡?

标签: iphone templates xib iad universal


【解决方案1】:

这简直就是个臭小子

我最终不得不使用我的 2 个 ITS 帮助热线事件中的一个,并且为此浪费了整整一周的工作时间。

将 uberView 的 backgroundColor 属性设置为 ANYTHING non-nil 可以解决问题。

这是 XIB 魔术完成的事情之一

有一个名为 nib2objc 的工具可以将 XIB 转换为代码。如果我必须自己调试它,这将是下一步,以实际查看 Apple 默认 XIB 中包含的内容,并查看我无法手动实现的内容。

但这是 UIKit 中的一个 BUG。 Apple 的 ITS 代表告诉我要提交它,我已经这样做了。

【讨论】:

  • 谢谢!我永远不会猜到它与背景颜色有任何关系。只是花了几个小时试图弄清楚这一点。
  • 我从没想过将横幅的背景颜色设置为清除会使其无法正常工作,谢谢!
【解决方案2】:

我遇到了同样的问题,但是使用 [UIColor clearColor] 作为超级视图的背景并没有帮助。 (这是在 iOS 4.3.3 上)

所有的超级视图都需要有一个不透明颜色集。

【讨论】:

    【解决方案3】:

    我确实确认添加

    self.window.backgroundColor = [UIColor whiteColor];
    

    didFinishLaunchingWithOptions 函数中完美运行。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多