- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
目前我在 Storyboard中放置了两个流程:入职/登录流程(目前在 Storyboard设置中设置为初始 View Controller )和主要应用程序流程(例如,登录后的核心应用程序体验)。
从入门到主应用程序流程的过渡在 UI 中成功发生,但我认为我的做法不太正确。我遇到的一个问题是无法将 View 状态恢复到主应用程序流程。
当从入门流程过渡到主应用程序流程时,我使用 presentViewController
过渡到新的 View Controller ,然后我从中删除呈现 View Controller 的父导航 Controller 使用 removeFromParentViewController
查看层次结构。我的想法是,主应用程序流程确实应该有自己的 View 层次结构,其根应该是新呈现的 View Controller 中的第一个 View 。
但是,以这种方式做事会破坏 View 恢复代码。似乎我在某种程度上未能正确地将 View 层次结构“重置”到主导航 Controller 。 View 状态恢复在我没有从 View 层次结构中删除入职导航 Controller 之前是有效的(如下面的代码所示),但现在它不起作用——状态总是恢复到入职流程的开始,- (void)decodeRestorableStateWithCoder:(NSCoder *)coder
方法永远不会在主应用程序流 Controller 上调用。
下面是介绍主应用程序流程 Controller 的入职流程 Controller 的相关代码。
// The presenting view controller from the onboarding flow
@implementation TLOnboardingStep2ViewController
-(void)presentMainViewController {
UIStoryboard *board = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
// The root view controller of the main app flow
ECSlidingViewController *slidingVC = [board instantiateViewControllerWithIdentifier:@"slidingViewController"];
[self presentViewController:slidingVC animated:YES completion:^{
[[UIApplication sharedApplication].delegate window].rootViewController = slidingVC;
[self.navigationController removeFromParentViewController];
}];
}
@end
我在这里做错了什么?谢谢。
最佳答案
处理这个问题的更好方法似乎是让主应用程序流成为 Root View Controller ,并在需要时从主视图 Controller 作为模态视图 Controller 弹出到登录流中。这就是我现在正在做的事情,它似乎工作得更好,并且使层次结构更加清晰。
关于ios - 初始入职后如何过渡到主要应用程序流程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20941139/
我似乎对 git 存储库有权限问题。 当我 pull 入一个不是我的 Linux 用户创建的目录时,我出现了这个错误。 fatal: Unable to create '/home/---/.git/
在 Git 中,您可以将给定目录克隆到给定目录: git clone ssh://gitolite@dev.bipper.com:3687/com/bipper/kids/portal 当我运行我们
目前,如果您在分支 V2 中并执行“git pull origin V3”,它会将 V3 merge 到 V2,甚至不会发出警告或提示。这个选项可以以某种方式被阻止吗?我在这里阅读了所有类似的问题,人
我刚开始使用 Oracle 的 Coherence 缓存,我注意到这一点:如果我在缓存中放入一个 ConcurrentHashMap 对象,当我检索它时,我可以看到它被转换为一个普通的 HashMap
看起来我缺少对 git pull 和 git commit 的基本理解,假设我在分支上工作,而它在我更新时被其他开发人员更新了在本地做我的工作。我应该在发出 git pull 之前提交更改,还是应该执
好的。所以我以为我已经舔过了……但现在…… 我有一个项目,其中包含一个来自 GitHub 的小型库作为子模块。在该 super 项目的原始版本中,子模块按预期工作。 但是,我只是克隆了 super 项
使用 Visual Studio Code 中的内置 Git,我看不到将指定的远程分支 pull 入当前分支的方法。我可以这样做吗? 示例:我正在分支 myBranch 上工作,更改已 merge 到
当我尝试提交或 pull 此错误时 Bus error (core dumped) 发生了! 当我用 gdb 调试它时,(gdb git,run commit -a,where) 结果是: mucul
我对默认 Rails Rake 任务的预期用途有点困惑,想咨询一下我是否应该使用 db:reset或编写自定义 Rake 任务。没什么聪明的,只是日常管理,而且我很可能会错过一个明显的文档,因为我是
所以我做了: git reset --hard #commithash # make a bunch of changes, fixes and so on. git add -A git commi
我已使用以下命令成功部署到 firebase 托管应用: firebase init firebase deploy 在这个阶段,我正在执行 git pull 以将 repo 下 pull 到暂存服务
当尝试在 Eclipse 的 git 存储库中 pull (团队|从上下文菜单中 pull )时,出现 Could not get advertised Ref for branch refs/hea
我是一名优秀的程序员,十分优秀!