有没有办法检查 PDFKIT 中 Pdf 表单的所有字段是否已填写?
有什么办法可以找到当前pdf内容的大小。
例如:-
当用户打开 pdf 文件并在 pdf 中填写一些信息并单击提交按钮时。那么如何检查pdf内容大小意味着内容是否完全填充。如果用户未完全添加详细信息,等待 pdf 中的某些 TextFiled,那么我们需要显示警报“请填写所有信息”。
override func viewDidLoad() {
super.viewDidLoad()
setupNavigationBar()
self.view.addSubview(pdfView)
if let documentURL = Bundle.main.url(forResource: pdfName, withExtension: "pdf") {
if let document = PDFDocument(url: documentURL) {
pdfView.autoScales = true
pdfView.backgroundColor = UIColor.lightGray
document.delegate = self
pdfView.document = document
pdfView.autoScales = true
pdfView.minScaleFactor = 1.5
pdfView.maxScaleFactor = 5 }}
有人可以向我解释一下是否可以快速完成,如果可以,请指导我如何实现这一目标,我已经尝试了很多搜索,但还没有结果。
任何帮助将不胜感激。
提前致谢。
Is there any way to find the current pdf content size.
For example:-
When user open the pdf file and fill some information in the pdf and click on submit button. Then how to check pdf content size means the content fill fully or not. If user not fully added the details, pending some TextFiled in the pdf, then we need to show alert "Please fill all the information."
override func viewDidLoad() {
super.viewDidLoad()
setupNavigationBar()
self.view.addSubview(pdfView)
if let documentURL = Bundle.main.url(forResource: pdfName, withExtension: "pdf") {
if let document = PDFDocument(url: documentURL) {
pdfView.autoScales = true
pdfView.backgroundColor = UIColor.lightGray
document.delegate = self
pdfView.document = document
pdfView.autoScales = true
pdfView.minScaleFactor = 1.5
pdfView.maxScaleFactor = 5 }}
Can someone please explain to me is it possible in swift if yes please guide me how to achieve this, I've tried lot of search but no results yet.
Any help would be greatly appreciated.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我很好地理解这是以编程方式,请声明您的文本字段和按钮保存:
现在在 viewDidLoad 中声明 stackView 并设置约束:
之后编写您的控件功能:
如果您不太理解,请打开新文件并复制并粘贴我的代码
If I understand well this is programmatically way, declare your textfields and button Save:
Now in viewDidLoad declare stackView and set constraints:
After that write your control func:
If you don't understand well, open new file and copy and paste my code