Paint.UIBusyAlertView.UIBusyAlertView C# (CSharp) Метод

UIBusyAlertView() публичный Метод

public UIBusyAlertView ( string title, string message ) : System
title string
message string
Результат System
        public UIBusyAlertView(string title, string message)
            : base(title, message, null, null, null)
        {
            this.Visible = false;
            this.activityIndicatorView = new UIActivityIndicatorView(UIActivityIndicatorViewStyle.WhiteLarge);
            this.AddSubview(this.activityIndicatorView);
        }