gpt4 book ai didi

ios - 无法在我的 iPhone 应用程序中显示 playhaven 全屏广告

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

我有一个 iPhone 应用程序,在其中成功集成了 revmob SDK 和 chartboost SDK,但 playhaven SDK 不起作用。

我已经下载了它的完整SDK,也提到了here on this old Stack Overflow Question 。我仍然没有在我的应用程序中看到广告。有什么好的教程吗?

最佳答案

我的 PlayHavan 工作示例:https://app.box.com/s/lc2p8jhngn5o8hxeuw3y

代码:

#define PLAYHAVAN_TOKEN @"e1aa8bfe19d74ba3a30d9caa7f69a083"
#define PLAYHAVAN_SECRET @"e915e3ca790546b88ab252d032876b6a"

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[self initPlayHavan];
[self showPlayHavanFullScreenAds];
}


-(void) initPlayHavan
{
[[PHPublisherContentRequest requestForApp: PLAYHAVAN_TOKEN secret: PLAYHAVAN_SECRET placement:@"game_launch" delegate:self] preload]; //level_complete

_notificationView = [[PHNotificationView alloc] initWithApp:PLAYHAVAN_TOKEN secret:PLAYHAVAN_SECRET placement:@"game_launch"];
_notificationView.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;
}


-(void)showPlayHavanFullScreenAds
{
PHPublisherContentRequest *request = [PHPublisherContentRequest requestForApp: PLAYHAVAN_TOKEN secret: PLAYHAVAN_SECRET placement:@"game_launch" delegate:self];
[request send];
}

确保您添加了展示位置 game_launch 并为此展示位置分配了插页式广告。

关于ios - 无法在我的 iPhone 应用程序中显示 playhaven 全屏广告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17250814/

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