我創建了一個按鈕的網格。以下代碼創建按鈕並顯示它們,但按鈕上沒有文本。有沒有我失蹤的設置? (OBJ - C的答覆都很好,我很雙語)iPhone/iPad的UIButton TitleLabel文本沒有出現
RectangleF frame = new RectangleF (X + 3, Y + 3, cellWidth - 2, cellHeight - 2);
UIButton button = new UIButton (frame);
button.TitleLabel.Text = "Baha'i";
button.TitleLabel.Font = UIFont.FromName ("Helvetica-Bold", 15);
button.TitleLabel.TextColor = UIColor.Black;
button.TitleLabel.Frame = frame;
button.BackgroundColor = UIColor.FromWhiteAlpha(.5f,.5f);
this.AddSubview (button);
你爲什麼使用大寫字母titleLabel?它是button.titleLabel,而不是按鈕。** T ** itleLabel。 – 2015-11-04 13:05:23
我已經詳細解釋了這裏http://stackoverflow.com/a/11417134/1149906 – 2016-06-07 06:37:15