Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

ADBannerView

class in UnityEngine.iOS

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual

Descripción

ADBannerView is a wrapper around the ADBannerView class found in the Apple iAd framework and is only available on iOS.

It provides a view that displays banner advertisements to the user.

#pragma strict
public class NewBehaviourScript extends MonoBehaviour {
	private var banner: iOS.ADBannerView = null;
	function Start() {
		banner = new iOS.ADBannerView(iOS.ADBannerView.Type.Banner, iOS.ADBannerView.Layout.Top);
		iOS.ADBannerView.onBannerWasClicked += OnBannerClicked;
		iOS.ADBannerView.onBannerWasLoaded += OnBannerLoaded;
		iOS.ADBannerView.onBannerFailedToLoad += OnBannerFailedToLoad;
	}
	function OnBannerClicked() {
		Debug.Log("Clicked!\n");
	}
	function OnBannerLoaded() {
		Debug.Log("Loaded!\n");
		banner.visible = true;
	}
	function OnBannerFailedToLoad() {
		Debug.Log("FAIL!\n");
		banner.visible = false;
	}
}
using UnityEngine;
using System.Collections;

using ADBannerView = UnityEngine.iOS.ADBannerView;

public class NewBehaviourScript : MonoBehaviour {

private ADBannerView banner = null; void Start() { banner = new ADBannerView(ADBannerView.Type.Banner, ADBannerView.Layout.Top); ADBannerView.onBannerWasClicked += OnBannerClicked; ADBannerView.onBannerWasLoaded += OnBannerLoaded; ADBannerView.onBannerFailedToLoad += OnBannerFailedToLoad; }

void OnBannerClicked() { Debug.Log("Clicked!\n"); }

void OnBannerLoaded() { Debug.Log("Loaded!\n"); banner.visible = true; }

void OnBannerFailedToLoad() { Debug.Log("FAIL!\n"); banner.visible = false; } }

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.

Constructores

ADBannerViewCreates a banner view with given type and auto-layout params.

Funciones Estáticas

IsAvailableChecks if the banner type is available (e.g. MediumRect is available only starting with ios6).

Delegados

BannerFailedToLoadDelegateWill be fired when banner ad failed to load.
BannerWasClickedDelegateWill be fired when banner was clicked.
BannerWasLoadedDelegateWill be fired when banner loaded new ad.