Exemplo n.º 1
0
        void CreateDescription()
        {
            UITextView description = new UITextView(new RectangleF(0, 50, Frame.Width, Frame.Height));

            description.Text            = ResourceManager.GetString("loginRequired");
            description.BackgroundColor = UIColor.Clear;
            description.Font            = AppStyles.HelveticaNeue(20);
            description.TextAlignment   = UITextAlignment.Center;
            description.Editable        = false;
            AddSubview(description);
        }