gpt4 book ai didi

ios - iPad UIWebView 与 iPhone 网站

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

我在 iPad 应用程序中有一个 UIWebView,它应该显示移动版 Google。它像 iPhone 一样宽 320 像素,我已经设置了用户代理,以便它加载移动谷歌。但是网站比 UIWebView 更宽,尽管该网站针对移动屏幕进行了优化。这是我创建 WebView 的代码:

    NSDictionary *userAgentDictionary = [[NSDictionary alloc] initWithObjectsAndKeys:@"Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3", @"UserAgent", nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:userAgentDictionary];

webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 44, 320, 480)];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]];
[webView loadRequest:request];
[self addSubview:webView];

现在是这样的:

how it looks like now

我该怎么做才能让它合身?它也应该与其他非移动页面一起使用。

最佳答案

改变这一行:

webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 44, 320, 480)];

为此:

webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 44, self.view.frame.size.width, self.view.frame.size.height)];

关于ios - iPad UIWebView 与 iPhone 网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8477439/

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