gpt4 book ai didi

ios - 如何将 UILabel 置于 Chartboost Interstitial 之上?

转载 作者:行者123 更新时间:2023-11-29 03:08:59 28 4
gpt4 key购买 nike

如何将 UIView 放置在 Chartboost 广告之上?我尝试了一切。我使用 Chartboost 委托(delegate)来了解广告何时显示,然后添加 UILabel,但它会因 Chartboost 广告而变暗。我什至尝试了方法 [self.view BringSubviewToFront:label]; 但它不起作用。任何人都知道解决方法,这样我就可以显示此标签,而不会因 Chartboost 插页式广告而使其变暗。

这是我用于广告的代码(计时器仅用于测试):

-(BOOL)shouldDisplayInterstitial:(NSString *)location {

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, -150 /2, 500, 300)];
label.textColor = [UIColor whiteColor];
label.text = @"Tap ad to get a boost";
label.font = [UIFont fontWithName:@"AvenirNext-DemiBold" size:32.6];
label.alpha = 1;

[self runAction:[SKAction waitForDuration:5] completion:^{

self.view.window.rootViewController.view = label;
}];


return YES; }

最佳答案

虽然这可能是可行的,但它被视为人为增加(或激励)点击次数。这些类型的东西会被扫描并定期关闭。

相反,请使用 interstitial locations 的数字在你的应用程序中。测试哪些位置效果最好以及频率如何,然后集中精力在那里。

完全披露:我在 Chartboost 工作。

关于ios - 如何将 UILabel 置于 Chartboost Interstitial 之上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22442452/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com