使用 uinavigationcontroller 的基于视图的应用程序中的 ipad 旋转问题

发布于 2024-11-15 21:09:58 字数 411 浏览 6 评论 0原文

我第一次为 ipad 创建应用程序。 我创建了一个基于视图的应用程序,并在 appdelegate 中添加了 uinavigationcontroller。 在 myappviewController (myapp 是项目名称)中屏幕正在旋转。然后我创建了一个新文件(右键单击类文件夹->添加->新文件->ios cocoa touch 类->UIViewController 子类。 现在我正在使用这个视图来推动这个视图

    [self.navigationcontroller pushviewcontroller:secondview animated:YES];

,现在这个视图不旋转。 shouldAutoRotateToInterfaceOrientation 在两个文件中都返回 YES。 请帮我。

I am creating an app for ipad for the first time.
i have created a view based app and in appdelegate i have added uinavigationcontroller.
in myappviewController (myapp is project name) screen is rotating. Then i have created a new file(right click class folder->Add->new file->ios cocoa touch class->UIViewController subclass.
now i am pushing this view using

    [self.navigationcontroller pushviewcontroller:secondview animated:YES];

now this view is not rotating.
shouldAutoRotateToInterfaceOrientation is returning YES in both files.
please help me.

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

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

发布评论

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

评论(1

爺獨霸怡葒院 2024-11-22 21:09:58

尝试:

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}

Try:

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文