我有一个独立的离线 html 应用程序,它不适合在服务器上部署。我已将该 html 应用程序转换为 ipad 应用程序。
该应用程序具有本地 pdf 和 excel 文件的链接。我提供了在应用程序中下载这些文件的链接。它在浏览器中运行良好。
但是在 ipad 中,下载 pdf 报告和 excel 表报告的链接不起作用(即使我点击链接 pdf 也不会出现。它的行为就像一个死链接!)
任何建议都非常感谢!
要下载 pdf,请尝试以下操作:
1)创建一个按钮来调用printTapped()
方法(UIBarButtonItem在这里很好)
printTapped()
- (void)printTapped
{
NSData *pdfdata = [[NSData alloc] initWithContentsOfURL:@"try your url from where you want to download the pdf"];
//Store the Data locally as PDF File
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
NSString *docsDirectory = [paths objectAtIndex:0];
NSString *filePath = [docsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.pdf",app.stritreejob]];
//=======//
}