0

通常,要在普通模式下更改截面的特征(字体、颜色),我们必须从头开始创建整个视图。

如果需要对颜色/尺寸进行简单更改,是否有更简单的方法来做到这一点?

这是我倾向于做的事情:

    var header = new UILabel(new RectangleF(0, 0, 320, 25)){
      Font = UIFont.BoldSystemFontOfSize (22),
      TextColor = UIColor.White,
      BackgroundColor = SomethingPretty,
      Text = "Something"
};

Section secGroup = new Section(header);

在此处输入图像描述

4

1 回答 1

2

这似乎是最简单的方法:

var header = new UILabel(new RectangleF(0, 0, 320, 25)){
  Font = UIFont.BoldSystemFontOfSize (22),
  TextColor = UIColor.White,
  BackgroundColor = SomethingPretty,
  Text = "Something"
};

Section secGroup = new Section(header);
于 2012-10-16T03:50:44.237 回答