我希望我的UIwebview在单击链接时触发文件下载...它只是在webview中打开它,即它呈现文件的内容,即JSON字符串。
我注册了mimetype。我试过添加 下载=“target.myfiletype”到锚标签,但它仍然只是 在UIWebview中呈现内容(json)。
当我通过电子邮件发送它时,它会在我想要的正确应用程序中打开...
如何使我的UIWebview(位于同一个应用程序中)触发打开 我的应用程序中的文件与电子邮件的文件相同?
文件部分的电子邮件来源如下所示:
...
--Apple-Mail-38441BAA-F4DD-4BF1-B2CC-9AF9C829566A
Content-Type: application/myfiletype;
name="ExtremeSomething"
Content-Disposition: attachment;
filename="ExtremeSomething"
Content-Transfer-Encoding: 7bit
{
//FILECONTENT
}
...
我的应用程序通过本书实现文件加载,当我单击电子邮件中的文件时,它可以正常工作:
-(BOOL) application:(UIApplication *)application handleOpenURL:(NSURL *)url {
if (url != nil && [url isFileURL]) {
[self loadFile:url];
}
return YES;
}
我试图用负返回值覆盖shouldStartLoadWithRequest:
//Load initial page:
-(void) viewDidAppear:(BOOL)animated{
NSString *urlString = [NSString stringWithFormat:@"%@", @"http://users.student.lth.se/et08dc0/getWork.html"];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlString]]];
loadedNowDownloadMode = NO;
}
//Resort to download move where all <a> clicks result in downloads:
- (void)webViewDidFinishLoad:(UIWebView *)webView
{
loadedNowDownloadMode = YES;
}
//Logic for overriding shouldStartLoadWithRequest:
- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request
navigationType:(UIWebViewNavigationType)navigationType {
//Handle the download...
NSURL* url = [[NSURL alloc] initWithString:[[request URL] absoluteString]];
[DELEGATE loadFile:url];
//Prevent page load
return !loadedNowDownloadMode;
}
在宏DELEGATE引用的类中:
-(void) loadFile:(NSURL*)url{
NSError *error;
NSString *jsonString = [[NSString alloc]
initWithContentsOfURL:url
encoding:NSUTF8StringEncoding
error:&error];
if (jsonString == nil) {
NSLog(@"Error reading file at %@\n%@",
url, [error localizedFailureReason]);
return;
}
NSLog(@"Should load file!");
[self.coreDataHelper importNSData:[jsonString dataUsingEncoding:NSUTF8StringEncoding]];
[((ListViewController*)listsViewController) reloadTableData];
}
答案 0 :(得分:1)
您可以使用webView:shouldStartLoadWithRequest:navigationType:
委托方式处理您的特定网址,返回NO
并在您的应用中打开内容