UIWebView访问照片库,但具有多项选择



我需要有关此Web包装器的帮助。在我的应用程序中,有一个 UIWebView,当我从 UIWebView 调用输入标签来访问文件时,它运行良好,我没有在我的代码中添加任何多个图像,但仍然,该应用程序正在选择多个图像,但我想要一个图像选择。请帮助我。这是我的代码。

[webPage loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60.0]];
[webPage setOpaque:NO];
webPage.backgroundColor = [UIColor clearColor];
webPage.scrollView.bounces = NO;
webPage.delegate = self;
[self.view addSubview:webPage];

我有简单的<input type="file" />

问题是UIWebView会自动将多个属性附加到HTML标记中。 这种行为因iOS版本而异,我认为这是UIWebView的错误。

我有同样的问题。从UIWebview迁移到WKWebview,它更快,可以解决这个问题。苹果也建议使用WKWebview,如果应用程序支持是iOS 8.0及更高版本。

苹果代码

// .h file
// Please import #import <WebKit/WebKit.h>
@property(strong,nonatomic) WKWebView *webView;
// .m file in viewDidLoad Method
_webView = [[WKWebView alloc] initWithFrame:self.view.frame];
[_webView loadHTMLString:htmlString baseURL: [[NSBundle mainBundle] bundleURL]];
_webView.frame = CGRectMake(self.view.frame.origin.x,self.view.frame.origin.y + 20, self.view.frame.size.width, self.view.frame.size.height);
[self.view addSubview:_webView];

使用的网页

<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<input type="file"/> test single <br/>
</body>
</html>

相关内容

  • 没有找到相关文章

最新更新