使用 PDFView 从 Web 显示 PDF
Display PDF from web using PDFView
我有一个 pdf,我正在从 api 下载到本地设备并尝试使用 PDFView,因为我试图不使用 webview 进行任何操作,
我的问题是当我进入 PDFView 部分时,我正在学习 this 教程。我被困在 PdfDocument 部分。它一直说路径为空。
var downloadPath = Path.Combine(FileSystem.CacheDirectory, "certificate.pdf");
var pdfView = new PdfView
{
TranslatesAutoresizingMaskIntoConstraints = false
};
View.AddSubview(pdfView);
pdfView.LeadingAnchor.ConstraintEqualTo(View.SafeAreaLayoutGuide.LeadingAnchor).Active = true;
pdfView.TrailingAnchor.ConstraintEqualTo(View.SafeAreaLayoutGuide.TrailingAnchor).Active = true;
pdfView.TopAnchor.ConstraintEqualTo(View.SafeAreaLayoutGuide.TopAnchor).Active = true;
pdfView.BottomAnchor.ConstraintEqualTo(View.SafeAreaLayoutGuide.BottomAnchor).Active = true;
// ... HttpClient call to download pdf ...
pdfView.Document = new PdfDocument(new NSUrl(_downloadPath));
我排除了 http 客户端部分,因为它没有问题,我在测试时可以检测到该文件。
问题肯定出在这一行,我觉得应该是:
pdfView.Document = new PdfDocument(new NSUrl(_downloadPath, false));
我有一个 pdf,我正在从 api 下载到本地设备并尝试使用 PDFView,因为我试图不使用 webview 进行任何操作,
我的问题是当我进入 PDFView 部分时,我正在学习 this 教程。我被困在 PdfDocument 部分。它一直说路径为空。
var downloadPath = Path.Combine(FileSystem.CacheDirectory, "certificate.pdf");
var pdfView = new PdfView
{
TranslatesAutoresizingMaskIntoConstraints = false
};
View.AddSubview(pdfView);
pdfView.LeadingAnchor.ConstraintEqualTo(View.SafeAreaLayoutGuide.LeadingAnchor).Active = true;
pdfView.TrailingAnchor.ConstraintEqualTo(View.SafeAreaLayoutGuide.TrailingAnchor).Active = true;
pdfView.TopAnchor.ConstraintEqualTo(View.SafeAreaLayoutGuide.TopAnchor).Active = true;
pdfView.BottomAnchor.ConstraintEqualTo(View.SafeAreaLayoutGuide.BottomAnchor).Active = true;
// ... HttpClient call to download pdf ...
pdfView.Document = new PdfDocument(new NSUrl(_downloadPath));
我排除了 http 客户端部分,因为它没有问题,我在测试时可以检测到该文件。
问题肯定出在这一行,我觉得应该是:
pdfView.Document = new PdfDocument(new NSUrl(_downloadPath, false));