通常,要在普通模式下更改截面的特征(字体、颜色),我们必须从头开始创建整个视图。
如果需要对颜色/尺寸进行简单更改,是否有更简单的方法来做到这一点?
这是我倾向于做的事情:
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);