如何从 UIWEBVIEW 下载 xls 格式的文件?

How can I download files in xls format from UIWEBVIEW?

提问人:ibrahim halil bozkurt 提问时间:4/26/2022 最后编辑:Arasuvelibrahim halil bozkurt 更新时间:4/26/2022 访问量:98

问:

- (BOOL) webView:(UIWebView *) webView shouldStartLoadWithRequest:(NSURLRequest *) request navigationType:(UIWebViewNavigationType) navigationType
{
     
    NSString *mimeType = [request valueForHTTPHeaderField:@"Content-Type"];
    NSLog(@"Content-type: %@", mimeType);
    if(mimeType isEqualToString:@"application/vnd.ms-excel"] )
    {
        NSLog(@"Downloading file!");
       
        return NO;
    }
    return YES;
}
iOS Objective-C UIWebView

评论

0赞 Larme 4/26/2022
stackoverflow.com/questions/7377565/......?
0赞 Community 4/26/2022
请澄清您的具体问题或提供其他详细信息以准确说明您的需求。正如目前所写的那样,很难确切地说出你在问什么。

答: 暂无答案