返回介绍

ADBannerView 广告栏视图

发布于 2019-12-18 15:36:57 字数 2839 浏览 933 评论 0 收藏 0

Description 描述

AD Banner View is a wrapper around the ADBannerView class found in the Apple iAd framework and is only available on iOS.
广告栏视图 是关于苹果的iAd框架中的ADBannerView类的包装,并只适用于iOS。

It provides a view that displays banner advertisements to the user.
它提供了一个显示广告栏给用户的视图。

JavaScript:

var banner : ADBannerView = null;
function Start()
{
	banner = new ADBannerView(ADBannerView.Type.Banner, ADBannerView.Layout.Top);
	ADBannerView.onBannerWasClicked += OnBannerClicked;
	ADBannerView.onBannerWasLoaded  += OnBannerLoaded;
}
function OnBannerClicked()
{
	Debug.Log("Clicked!\n");
}
function OnBannerLoaded()
{
	Debug.Log("Loaded!\n");
	banner.visible = true;
}

C#:

private ADBannerView banner = null;
void Start()
{
	banner = new ADBannerView(ADBannerView.Type.Banner, ADBannerView.Layout.Top);
	ADBannerView.onBannerWasClicked += OnBannerClicked;
	ADBannerView.onBannerWasLoaded  += OnBannerLoaded;
}
void OnBannerClicked()
{
	Debug.Log("Clicked!\n");
}
void OnBannerLoaded()
{
	Debug.Log("Loaded!\n");
	banner.visible = true;
}

Variables 变量

layoutBanner layout 广告栏布局
loadedChecks if banner contents are loaded. 检查广告内容是否加载完毕
positionThe position of the banner view.广告栏的位置
sizeThe size of the banner view. 广告栏的大小
visibleBanner visibility. Initially banner is not visible. 广告栏的可见度,默认是不可见的

Constructors 构造函数

ADBannerViewCreates a banner view with given type and auto-layout params. 创建一个广告栏视图 根据类型和布局参数。

Static Functions 静态函数

IsAvailableChecks if the banner type is available (e.g. MediumRect is available only starting with ios6). 检查广告栏是否可用(例如MediumRect仅支持iOS6以后的版本)。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文