public void SendMessage(string message, string title = null) { UIHelpers.EnsureInvokedOnMainThread(() => { var alertView = new UIAlertView(title ?? string.Empty, message, null, "OK", null); alertView.Show(); }); }