我有一個RMS保護的pdf文件,如'sample.ppdf'。 它從URL加載。SKSafariViewController未在iOS中打開受保護的PDF
現在,當我執行以下操作: UIApplication.SharedApplication.OpenUrl(new NSUrl(_documentUrl));
iPhone Safari瀏覽器應用程序打開,並詢問我的選擇與特定的應用程序「AIP查看器」
現在,當我嘗試執行相同的用下面的代碼打開:
SFSafariViewController *svc = [[SFSafariViewController alloc] initWithURL:url];
svc.delegate = self;
[self presentViewController:svc animated:YES completion:nil];
SKSafariViewController打開,但是空白的。