我的应用程序中有一个WKWebView,在该Webview中有一个按钮,它调用imagepicker和camera获取图像并上传。但我有一个问题,默认情况下,所选图片名称为“图像”,需要更改。现在,我的代码中没有UIImagePicker。因此,如何获取所选图像并重命名?这是我当前的代码。
_webView = [[WKWebView alloc] initWithFrame:self.view.bounds];
_webView.autoresizingMask=(UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth);
_webView.backgroundColor = [UIColor clearColor];
_webView.scrollView.bounces = NO;
_webView.navigationDelegate = self;
[_webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60.0]];
[self.view addSubview:_webView];