UIView 隐藏导航栏后退按钮文本如何使其可见?

UIView hides Navigation bar back button text how to make it visible?

我正在尝试将导航栏背景更改为渐变红色。 我已将子视图添加到导航栏,将背景设置为我想要的颜色。 但是导航栏后退按钮文本是不可见的。 后退按钮可见,但文本不可见。

UIView view = new UIView();
var gradient = new CAGradientLayer();
gradient.Frame = NavigationBar.Bounds;
gradient.NeedsDisplayOnBoundsChange = true;
gradient.MasksToBounds = true;
gradient.Colors = new CGColor[] { UIColor.FromRGB(248, 0, 0).CGColor, UIColor.FromRGB(143, 0, 0).CGColor };
view.Layer.InsertSublayer(gradient, 0);
UINavigationBar.Appearance.SetTitleTextAttributes(new UITextAttributes() { TextColor = UIColor.Clear });

var bounds = NavigationBar.Bounds;
this.NavigationBar.AddSubview(view);

我用渐变颜色创建了图像并将该图像用作 NavigationBar 的背景。对于 iOS,请参阅下面的教程。

UINavigationBar tintColor with gradient

           UIGraphics.BeginImageContext(gradient.Bounds.Size);
           gradient.RenderInContext(UIGraphics.GetCurrentContext());
           UIImage backImage = Graphics.GetImageFromCurrentImageContext();
           UIGraphics.EndImageContext();      
           NavigationBar.BarStyle = UIBarStyle.Default;
           UINavigationBar.Appearance.SetBackgroundImage(backImage, UIBarMetrics.Default);