应用程序在adwhirl中添加自定义横幅或标签时崩溃

时间:2011-01-11 10:31:31

标签: iphone objective-c iphone-sdk-3.0 ios4

哪些步骤会重现问题? 1.√[adWhirlView replaceBannerViewWith:replacement];

预期产量是多少?你怎么看?

对replaceBanner执行错误访问,并在示例中指定了UILabel,当我添加自定义横幅视图时它也会崩溃

您使用的是哪个版本的产品?什么操作系统?

  

Mac OX 10.6.3和AdWhirlSDK_iPhone_2.6.2.zip

请在下面提供任何其他信息。

每当我在Adwhirl中集成自定义添加时,我的应用程序崩溃[adWhirlView replaceBannerViewWith:replacement];请让我知道如何克服这个问题。

 - (void)performEvent:(AdWhirlView *)adWhirlView {
  // replace banner content
  UILabel *replacement = [[UILabel alloc] initWithFrame:kAdWhirlViewDefaultFrame];
  replacement.backgroundColor = [UIColor blackColor];
  replacement.textColor = [UIColor whiteColor];
  replacement.textAlignment = UITextAlignmentCenter;
  replacement.text = [NSString stringWithFormat:@"Event performed, view %x", adWhirlView];
  [adWhirlView replaceBannerViewWith:replacement];
  [replacement release];
}

http://code.google.com/p/adwhirl/wiki/CustomEvents

1 个答案:

答案 0 :(得分:0)

EXC_BAD_ACCESS它表示您已删除了一些对象,之后您尝试访问它。或者您已创建自动释放对象,然后您正在访问该对象。在这两种情况下,当您尝试访问未指向任何内容的对象时,将显示EXC_BAD_ACCESS