コード例 #1
0
 partial void DisplayTextInputAlert(Foundation.NSObject sender)
 {
     // User helper class to present alert
     AlertViewController.PresentTextInputAlert("A Short Title is Best", "The message should be a short, complete sentence.", "placeholder", "", this, (ok, text) => {
         Console.WriteLine("Text Input Alert: The user selected {0} and entered `{1}`", ok, text);
     });
 }