Appverse.Platform.IPhone.IPhoneScanner.StartNotifyAlert C# (CSharp) Method

StartNotifyAlert() private method

private StartNotifyAlert ( string title, string message, string buttonText ) : bool
title string
message string
buttonText string
return bool
		private bool StartNotifyAlert (string title, string message, string buttonText)
		{
			using (var pool = new NSAutoreleasePool ()) {
				var thread = new Thread (ShowAlert);
				string[] alertData = new string[] { title, message, buttonText };
				thread.Start (alertData);
			}
			return true;
		}