Paint.UIBusyAlertView.UIBusyAlertView C# (CSharp) Method

UIBusyAlertView() public method

public UIBusyAlertView ( string title, string message ) : System
title string
message string
return 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);
        }