gpt4 book ai didi

ios - 照片浏览器的方向问题

转载 作者:行者123 更新时间:2023-12-01 17:32:52 25 4
gpt4 key购买 nike

我正在使用 KTPhotoBrowser .谁能告诉我为什么当我在我的项目中使用此代码的 TabBarSample 时,我无法使照片适用于风景?照片始终以纵向模式显示,因为我的项目仅以纵向模式运行。我该如何解决这个问题?我添加了以下内容

-(BOOL)shouldAutorotate { 
return YES;
}

SDWebImageRootViewController.m但仍然没有运气。

请大家下载 this看看为什么 TabBarSample(project) 不适用于景观?

enter image description here
enter image description here

最佳答案

我强烈推荐瑞安的回答给其他读过这篇文章的人。

但在这种特殊情况下,发生的事情是 UITabBarController 没有被设置为应用程序窗口中的 Root View Controller 。我只能猜测这在 iOS 6(Github 项目已有 3 年历史)之前的工作方式有所不同。因此,您在日志中收到此消息:

Application windows are expected to have a root view controller at the end of application launch

要解决此问题,请在您的应用委托(delegate)中更改此行:
[window addSubview:tabBarController.view];

对此:
[self.window setRootViewController:tabBarController];

然后正如 Anill 所说,我们需要确保选项卡栏中的所有 View Controller 都同意旋转。

关于ios - 照片浏览器的方向问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14626633/

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