Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

NotificationServices.PresentLocalNotificationNow

public static function PresentLocalNotificationNow(notification: LocalNotification): void;

Description

Presents a local notification immediately.

	function Start()
	{
		var notif = new LocalNotification();
		notif.alertBody = "Hello!";
		NotificationServices.PresentLocalNotificationNow(notif);
	}

function Update() { if (NotificationServices.localNotificationCount > 0) { Debug.Log(NotificationServices.localNotifications[0].alertBody); NotificationServices.ClearLocalNotifications(); } }