创建UIButton时标题文字未显示

时间:2018-12-10 16:18:25

标签: c# ios uibutton

我有一个充满字符串的列表,我正在尝试为列表中的每个字符串创建一个按钮。显示所有按钮,但不显示文本。这是我的代码。

private void ListStubs()
    {
        foreach (string stub in MyList)
        {
            UIButton button = new UIButton();

            button.Frame = new CGRect(27f, i, 290f, 35f); 
            button.SetTitle(stub, UIControlState.Normal);
            button.BackgroundColor = UIColor.FromRGB(255, 255, 255);
            button.SetTitleColor(UIColor.LightTextColor, UIControlState.Normal);
            button.Alpha = 1;
            button.Layer.CornerRadius = 8;

            scrollView.AddSubview(button);

            sub += 58;

            scrollView.ContentSize = new CGSize(0, sub);

            i += 58;
        }
    }

编辑:刚发现,这是我的字符串:S

的问题

1 个答案:

答案 0 :(得分:1)

您还需要设置button.Text

button.Text=stub;