从“推送”视图控制器访问导航控制器?

发布于 2024-08-29 12:45:24 字数 295 浏览 1 评论 0原文

我有一个使用 UITableView 的主菜单,它可以成功地将其他 ViewController 推送并显示到前面。但是,在这些推送的控制器中,我希望能够将其他控制器推送到 navigationController 堆栈上。推送的 ViewController 中的 self.navigationController 似乎没有引用任何内容,因此当我执行 [self.navigationController PushViewController:nextVCAnimated:YES]; 时,什么也没有发生。我做错了什么?

I've got a main menu using a UITableView which can successfully push and display other ViewControllers to the fore. However, within these pushed controllers I wish to be able to push other controllers onto the navigationController stack. self.navigationController in a pushed ViewController seemingly does not reference anything, so when I do [self.navigationController pushViewController:nextVC animated:YES]; nothing happens. What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゝ偶尔ゞ 2024-09-05 12:45:24

class a{

从这里你推送到类 b

所以

在推送之前推送到类 b

时指定

classbObject.classaNav=self.navigationController;

然后推它。

}

class b{

在此声明

导航控制器

UINavigationcontroller *classaNav;

在 view 中确实加载了,你可以访问 classaNav

}

欢呼!!!!!!

class a{

from here u pushed to class b

so

while pushed to class b

before push specify

classbObject.classaNav=self.navigationController;

then push it.

}

class b{

declare

Navigation controller here

UINavigationcontroller *classaNav;

in view did load u can access the classaNav

}

cheers!!!!!

近箐 2024-09-05 12:45:24

我猜这和动画有关系。将动画属性设置为NO,然后尝试。另外,请发布您的代码。

I'm guessing that it has something to do with animation. Set the animated property to NO and then try. Also, please post your code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文