Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何隐藏 iAD
我目前有一个场景,在用户不活动一定程度后,我必须显示 iAd。一旦它在不活动后出现,我想在用户活动一定时间后再次自动隐藏 iAD。如何在一定时间后强制关闭或隐藏 iAd?
由于 iAd 基本上只是一个 UIView,您可以调用 setHidden 或更改 alpha。
您可以使用 performSelector:withObject:afterDelay 在一定时间后显示您的 iAd,如下所示:
[self performSelector:@selector(hideAd:) withObject:nil afterDelay:3]
隐藏它也是如此。