gpt4 book ai didi

ios - 在 iOS 11.0 之前检查 pdf 是否受密码保护

转载 作者:行者123 更新时间:2023-11-28 13:51:24 26 4
gpt4 key购买 nike

我得到一个包含 pdf 文档的 url。

如果密码受到保护,我需要向用户询问密码。

在 iOS 11.0 之后使用 PDFkit 也能做到这一点。

    if #available(iOS 11.0, *) {
if let pdfDocument = PDFDocument(url: url) {

print(pdfDocument.isEncrypted)
print(pdfDocument.isLocked)

if pdfDocument.isEncrypted {
// Its password protected
}
}
}
else {

// Earlier versions..
}

有什么办法吗?尽可能不使用任何第三方

最佳答案

对于 iOS 10 或更早版本,您应该使用 CGPDFDocument:

public func isLocked(fileURL: URL) -> Bool? {
guard let document = CGPDFDocument(fileURL as CFURL) else { return nil }
return !document.isUnlocked
}

关于ios - 在 iOS 11.0 之前检查 pdf 是否受密码保护,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54566406/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com