1

我的程序崩溃了:

#0      0x3138cec0 in objc_msgSend
#1      0x0002bb6e in -[AdMobDelegateWrapper didYouNilOutYourDelegate:]
#2      0x0002c392 in -[AdMobDelegateWrapper publisherId]
#3      0x0001ab7e in -[AdMobAd buildParamsWithLastClickInfo:]
#4      0x0001b044 in -[AdMobAd requestAdFromServer]
#5      0x0001963c in -[AdMobAd browserIconsDidFinishLoading]
#6      0x0001a23e in -[AdMobAd downloadDidSucceed:]
#7      0x323fba14 in -[NSObject performSelector:withObject:]
#8      0x0002122e in -[AdMobURLDownload performRequest:]
#9      0x33731acc in -[NSThread main]
#10     0x336dfd14 in __NSThread__main__
#11     0x33ad8788 in _pthread_body

为什么?

我使用 4.0 SDK 并且设备的系统版本是 iOS 3.1.3。

我的代码非常简单,来自“admob_iphone_sdk_20100818”中的示例。

4

1 回答 1

5

好的,我找到了解决方案。我快到了,但不完全。问题是将代表设置为零,但这个地方是错误的。

这就是我解决它的方法:

- (void)viewDidLoad {
    [super viewDidLoad];
    adMobAd = [AdMobView requestAdWithDelegate:self]; // start a new ad request
    [adMobAd retain];
}
- (void)viewDidUnload {
    //Nothing to do here
}
- (void)dealloc {
    //THIS IS THE IMPORTANT STUFF
    if (adMobAd != nil){
       adMobAd.delegate = nil;
    }
    [adMobAd release];

    [super dealloc];
}

将代表的“解放”移动到 dealloc 块已经解决了我的问题。

希望能帮助到你!

于 2010-10-12T10:11:11.557 回答