如何在xamarin.ios中全局隐藏导航栏后退按钮标题

时间:2017-11-29 04:40:24

标签: xamarin xamarin.ios xamarin.forms

我在AppDelegate中使用了此代码,

UIBarButtonItem.Appearance.SetBackButtonTitlePositionAdjustment (new UIOffset (-100, -60), UIBarMetrics.Default);

但它的位置已经变为谷底。我附上了结果截图。

screenshot

1 个答案:

答案 0 :(得分:0)

解决方案1:设置标题颜色而不是标题位置

UITextAttributes attribute = new UITextAttributes {TextColor = UIColor.Clear };
UIBarButtonItem.Appearance.SetTitleTextAttributes(attribute, UIControlState.Normal);

解决方案2:仅设置水平偏移。

UIBarButtonItem.Appearance.SetBackButtonTitlePositionAdjustment (new UIOffset (-100, 0), UIBarMetrics.Default);