gpt4 book ai didi

ios - uiwebview 不响应方向变化

转载 作者:行者123 更新时间:2023-11-29 04:45:01 25 4
gpt4 key购买 nike

UIViewController *webViewController = [[[UIViewController alloc] init] autorelease];
UIWebView *uiWebView = [[[UIWebView alloc] initWithFrame: CGRectMake(0,0,320,480)] autorelease];
[webViewController.view addSubview: uiWebView];
[self.navigationController pushViewController:webViewController animated:YES];

我想允许更改此 Web View 的方向。如何实现这一目标?另外,如果我从上一个横向 View 导航, WebView 会在右侧显示空白区域。请帮忙解决这个问题。

最佳答案

-[UIViewController shouldAutorotateToInterfaceOrientation :] 的默认实现仅对于纵向方向返回 YES。对于其他方向,它返回NO

您必须创建UIViewController的子类。在您的子类中,您必须覆盖 shouldAutorotateToInterfaceOrientation: 才能为您想要支持的所有方向返回 YES。使用子类的实例而不是使用基本的 UIViewController

关于ios - uiwebview 不响应方向变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9782528/

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