如何知道哪个viewController在导航控制器上?

发布于 2024-12-03 07:32:04 字数 285 浏览 1 评论 0原文

我正在遵循 Facebook 连接教程,一切都很好。问题是我正在以编程方式执行此操作,并且在根据笔尖的视图控制器的一部分中,发生了一些情况。

if ((self = [super initWithNibName:@"FBFunLoginDialog" bundle:[NSBundle mainBundle]])) {

那么我怎样才能用我的 navigationController 做同样的事情呢?

我如何知道导航控制器是否在 MainViewController 中?

I'm following a tutorial for Facebook connect, all is fine. The problem is that I'm doing it programatically, and in one part according to the view controller from a nib, something happens.

if ((self = [super initWithNibName:@"FBFunLoginDialog" bundle:[NSBundle mainBundle]])) {

So how can I do the same but with my navigationController?

How can I know if the navigation controller is in the MainViewController?

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

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

发布评论

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

评论(1

攒眉千度 2024-12-10 07:32:04
if (self.navigationController) {
    // your view controller is inside a navigation controller
}
if (self.navigationController) {
    // your view controller is inside a navigation controller
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文