gpt4 book ai didi

objective-c - 具有不同方向的导航 Controller

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:23:26 27 4
gpt4 key购买 nike

我想创建一个 UINavigationController,带有一个主视图 Controller 和一个详细 View Controller 。

Master View Controller可以在Portrait和LandscapeRight中旋转,而detail View Controller只能在LandscapeRight中查看(Detail显示电影)。

设置它的最佳方式是什么?

最佳答案

我建议添加以下代码行

在您的主视图 Controller 上:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

return interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationLandscapeRight;
}

在你的细节 View Controller 上

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

return interfaceOrientation == UIInterfaceOrientationLandscapeRight;
}

这应该可以解决问题。

关于objective-c - 具有不同方向的导航 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9281409/

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