Пример #1
0
        public static void ShowLocalizedAlertWithOkOption(string title, string message)
        {
            string localizedTitle       = NSBundle.MainBundle.LocalizedString(title, null);
            string localizedMessage     = NSBundle.MainBundle.LocalizedString(message, null);
            string localizedButtonTitle = NSBundle.MainBundle.LocalizedString("OK", null);

            AlertHelper.ShowAlertWithSingleButton(localizedTitle, localizedMessage, localizedButtonTitle);
        }
Пример #2
0
 public static void ShowAlertWithOkOption(string title, string message)
 {
     AlertHelper.ShowAlertWithSingleButton(title, message, "OK");
 }