更改导航栏文本颜色

时间:2013-03-08 14:22:33

标签: ios uinavigationitem xamarin.ios

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

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

但那没用。或类似的东西:

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

但这会在C#中出现什么?

1 个答案:

答案 0 :(得分:0)