問題があります。Flurry SDK を iOS アプリに追加し、ユーザーが uiAlertView の [OK] ボタンをクリックするたびに全画面表示を追加したいと考えています。問題は、それが機能しないことです。
そのため、AlertView を使用せずに試してみましたが、完全に機能します。
AlertView をクリックした後に機能しない理由を誰かが知っています。
// The call of the alertview
UIAlertView *myAlert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"TitlePopupNewGame", nil) message:nil delegate:self cancelButtonTitle:NSLocalizedString(@"CancelPopupNewGame", nil) otherButtonTitles:NSLocalizedString(@"YesPopupNewGame", nil), nil];
myAlert.tag = 1;
myAlert.delegate = self;
[myAlert show];
// Alertview method
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
if (alertView.tag == 1 && buttonIndex == 0){
[self showInterstitial];
}
}
// ShowInterstitial method
-(void) showInterstitial{
if ([FlurryAds adReadyForSpace: @"Full screen banner"]) {
[FlurryAds displayAdForSpace: @"Full screen banner"
onView:mv];
[FlurryAds fetchAdForSpace:@"Full screen banner"
frame:mv.frame size:FULLSCREEN];
} else {
// fetch an ad
[FlurryAds fetchAdForSpace:@"Full screen banner"
frame:mv.frame size:FULLSCREEN];
}
}
ありがとう