gpt4 book ai didi

ios - 循环申请流程 - Need Idea

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

我有一个可以从两个路径访问的屏幕(我的个人资料):

  • 登录 -> 内容 -> 个人资料
  • 登录 -> 注册 -> 个人资料。

在这两个路径中, View 显示为:

 [self.navigationController pushViewController...];

但我的问题是,在用户注册并完成个人资料后,它应该“返回”到内容 View 。 (显然它不适用于导航 Controller 堆栈,因为内容不在导航 Controller 中)。

我的问题是,你有什么建议?

PS:我知道这不是一个真正的问题,但我已经考虑了几个小时了,但我什么都没想到。也许你们中的一些人不得不处理类似的案例。

编辑:基本上这个问题可以概括为:您如何处理循环申请流程?

编辑:我已经解决了这个问题,方法是从 Register 推送到 Content,然后在没有动画的 viewWillAppeare 中推送 Profile(所以我需要的是在堆栈中),但我仍然对处理循环应用程序流感兴趣。

最佳答案

我的建议是更改 [UINavigationController viewControllers]。

所以在你结束注册之后你可以做一些类似的事情

ContentVC *content = [[ContentVC alloc] init];
[self.navigationController setViewControllers:[NSArray arrayWithObject:content]];
[self.navigationController popToRootViewControllerAnimated:YES];

关于ios - 循环申请流程 - Need Idea,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19295300/

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