Skip to content

获取选中内容

用户可以通过拖动鼠标或手指来选择 PDF 文档中的文本,并实时获取选中的内容。

以下是提取选中内容的示例代码:

swift
// 提取选中的文字
let currentSelection = pdfview.currentSelection
let currentText = currentSelection?.string()
objective-c
// 提取选中的文字
CPDFSelection *currentSelection = pdfView.currentSelection;
NSString *currentText = [currentSelection string];