Appverse.Core.PushNotifications.AbstractPushNotifications.ShowNotificationAlert C# (CSharp) Method

ShowNotificationAlert() private static method

Manually shows a notification alert.
private static ShowNotificationAlert ( string title, string message ) : void
title string Title.
message string Message.
return void
		private static void ShowNotificationAlert(string title, string message) {
			if (!string.IsNullOrEmpty(message))
			{
				UIAlertView avAlert = new UIAlertView(title, message, null, "OK", null);
				avAlert.Show();
			}
		}
	}