0

所以我有一个导航栏,但我想将文本颜色更改为黑色。我想我必须向导航栏添加一个新标签并自定义该标签。我试过这个:

navbar.TopItem.TitleView.Add BarLabel = new UILabel();
BarLabel.TextColor = UIColor.Black;

但这没有用。或者是这样的:

[self.myBarButton setTitleTextAttributes:[NSDictionary dictionaryWithObject:[UIColor blackColor] forKey:UITextAttributeTextColor] forState:UIControlStateNormal];

但这在 C# 中会是什么?

4

1 回答 1

0

谷歌搜索给了我这个: http: //www.developersalley.com/blog/post/2012/03/04/How-To-Change-The-Font-Of-MonoTouchUIKitUINavigationBar.aspx

改变颜色非常相似

于 2013-03-08T16:42:53.747 回答