gpt4 book ai didi

ios - 删除导航栏中的后退箭头,保留后退按钮标题

转载 作者:行者123 更新时间:2023-11-29 11:33:57 24 4
gpt4 key购买 nike

我有 xamarin forms ios 应用程序,我需要在其中删除导航栏中的后退箭头,但应显示标题,当用户单击该后退按钮标题时,它应导航到上一个 View 。 我尝试使用`

NavigationPage.SetBackButtonTitle(this, "Cancel");

NavigationPage.SetHasBackButton(this, false);

但是后退箭头还在显示,请问为什么只有文字Cancel?没有<符号?

最佳答案

我通过如下添加自定义渲染器解决了我的问题

public override void ViewWillAppear(bool animated)
{
base.ViewWillAppear(animated);
this.NavigationController.TopViewController.NavigationItem.LeftBarButtonItem =new UIBarButtonItem(“Cancel”, UIBarButtonItemStyle.Plain, (sender, args) => { });
}

关于ios - 删除导航栏中的后退箭头,保留后退按钮标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50962728/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com