我完成了sprite-Kit游戏的所有代码,但是iAd给了我很多困难。单击iAd时,游戏将再次重新启动。如何解决这个问题?我有viewController游戏,标题场景,levelOne场景,二级场景。我读过其他相关文章,但无法解决问题。谢谢你。
viewController.h
#import <iAd/iAd.h>
@interface RAViewController
@property (nonatomic, strong) ADBannerView *adView;
@end
viewController.m
-(void)viewDidLoad{
ADBannerView *adView = [[ADBannerView alloc] initWithFrame:CGRectZero];
[adView setFrame:CGRectMake(0, 0, 1024, 768)]; // set to your screen dimensions
[adView setBackgroundColor:[UIColor clearColor]];
[self.view addSubview:adView];
}
答案 0 :(得分:0)
adView = [[ADBannerView alloc] initWithFrame:CGRectZero];
adView.delegate = self;
[adView setFrame:CGRectMake(0, 0, 1024, 768)]; // set to your screen dimensions
[adView setBackgroundColor:[UIColor clearColor]];
[self.view addSubview:adView];
也许代表会帮助你。我没有试过这段代码,试着告诉我它是否有效。