J'ai créé une grille de boutons. Le code suivant crée les boutons et les affiche, mais il ne contient aucun texte. Y a-t-il un paramètre qui me manque? (Les réponses d'Obj-C sont bien, je suis bilingue)
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);