gpt4 book ai didi

iOS - 检测 SKStoreProductViewController 被打开

转载 作者:行者123 更新时间:2023-11-29 02:27:10 24 4
gpt4 key购买 nike

在我的应用中,我使用了一些广告 SDK。在其中许多情况下,当用户点击广告下载应用程序时,SDK 使用 SKStoreProductViewController 使用户能够获取应用程序。商店页面以模态视图打开。

有什么方法可以检测到 SKStoreProductViewController 已打开?

我试图通过计算应用程序中特定时刻打开的 View Controller 的数量来做到这一点:

 [[[[[UIApplication sharedApplication] delegate] window] rootViewController] childViewControllers]

没有给我想要的。

我也试过这个:

     [self checkWithView:[[[UIApplication sharedApplication] delegate] window]];


-(void)checkWithView:(id)view
{
NSArray *views = [view subviews];
for (id view in views) {
if ([view isKindOfClass:[SKStoreProductViewController class]]){
NSLog(@"Bingo!");
}
else{
[self checkWithView:view];
}
}
}

但是没找到...

也许有人有更好的主意?

最佳答案

我找到了答案:

UIViewController *vc = [[[UIApplication sharedApplication] delegate] window].rootViewController.presentedViewController;

[self checkWithViewController:vc];


-(void)checkWithViewController:(UIViewController *)viewController
{
if(viewController){
if ([viewController isKindOfClass:[SKStoreProductViewController class]]){
NSLog(@"Bingo!");
}
else{
[self checkWithView:viewController.presentedViewController];
}
}
}

关于iOS - 检测 SKStoreProductViewController 被打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27379375/

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