有没有办法在Monotouch Dialog类实例化时设置字体?
[Section("This is the header")]
这将使用带阴影的默认蓝色文本进行渲染,但我找不到该字体的设置位置。有没有办法覆盖它使用的字体和颜色?
答案 0 :(得分:6)
我为那些希望在整个解决方案中替换所有节头的人找到了解决方案。在MonoTouch.Dialog
中,有一个名为DialogViewController
的类,在使用反射API创建视图时使用。在这里,有一个名为GetViewForHeader()
的方法。
section.HeaderView
public override UIView GetViewForHeader (UITableView tableView, int sectionIdx)
{
var section = Root.Sections [sectionIdx];
if (!string.IsNullOrEmpty(section.Caption))
{
var label = new UILabel();
label.BackgroundColor = UIColor.FromRGB(89, 41, 17);
label.TextColor = UIColor.FromRGB(255, 206, 52);
label.ShadowColor = UIColor.Black;
label.ShadowOffset = new SizeF(0, 1f);
label.Font = UIFont.FromName("TitlingGothicFB Cond", 20);
label.Text = section.Caption;
return label;
}
return section.HeaderView;
}
public override float GetHeightForHeader (UITableView tableView, int sectionIdx)
{
if (!string.IsNullOrEmpty(section.Caption))
return 40f;
return -1;
}
请记住手动或通过从标签获取高度来设置高度。您也可以创建自定义UIView
,但标签对我来说已经足够了。
答案 1 :(得分:0)
使用类似的部分时,您将使用UITableView标准渲染。
改变它的唯一方法是使用Element API而不是反射API,并提供一个UIView来自己绘制数据的内容。