Version: 2017.2
言語: 日本語
public static void PresentLocalNotificationNow (iOS.LocalNotification notification);

説明

すぐにローカル通知を表示します

    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(); } }