6

我试过代码

UIbutton *bt = new UIbutton;
bt.Font = UIFont.SystemFontSize(35);

但我不断收到编译错误“由于保护级别,字体大小无法访问。” 任何解决方法?

4

1 回答 1

6

错误消息远非理想,而是SystemFontSize返回浮点数的属性,而不是返回 a 的方法UIFont

为此,您想要:

UIButton button = UIButton.FromType (UIButtonType.RoundedRect);
bt.Font = UIFont.SystemFontOfSize (35)
于 2012-04-08T17:59:46.773 回答