gpt4 book ai didi

c# - 导航问题 : PopToRootAsync is not supported globally on iOS, 请使用 NavigationPage

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:25:22 27 4
gpt4 key购买 nike

在 App 类上我有这个:

MainPage = new NavigationPage(new MainPage());

在 MainPage OnAppearing 中:

protected async override void OnAppearing ()
{
base.OnAppearing ();

if (TempUserInfo.IsNewUser ())
await this.Navigation.PushModalAsync ( new SignUpPage ());
}

在用户输入所有信息后,在 SignUpPage 上,我使用这个:

await this.Navigation.PushModalAsync (new VerificationCodePage());

最后,在 VerificationPage 上查看验证码后,我使用了这个:

await this.Navigation.PopToRootAsync ();

现在,我收到这个错误:

iOS 不支持全局 PopToRootAsync,请使用 NavigationPage。

我想要实现的就是上面这个导航设置。

最佳答案

而不是做

await this.Navigation.PopToRootAsync ();

您可以重置主页:

MainPage = new NavigationPage(new MainPage());

关于c# - 导航问题 : PopToRootAsync is not supported globally on iOS, 请使用 NavigationPage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42472905/

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