gpt4 book ai didi

ios - 有没有办法在点击时存储 pdf 注释?

转载 作者:行者123 更新时间:2023-12-01 19:30:53 25 4
gpt4 key购买 nike

我正在构建一个机器学习应用程序来读取 pdf 信息,为了训练我的算法,我需要获取 pdf 注释位置。有没有办法设置手势识别器并在单击时将注释添加到数组中?我成功地将注释添加到正则表达式的 pdf 中。但我需要添加注释及其相关信息(单击后在文档中的位置)我可以向应用程序添加手势识别器吗?我的应用程序使用 SwiftUI。

func makeNSView(context: NSViewRepresentableContext<PDFViewRepresentedView>) -> PDFViewRepresentedView.NSViewType {
let pdfView = PDFView()
let document = PDFDocument(url: url)
let regex = try! NSRegularExpression(pattern: #"[0-9.,]+(,|\.)\d\d"#, options: .caseInsensitive)
let string = document?.string!
let results = regex.matches(in: string!, options: .withoutAnchoringBounds, range: NSRange(0..<(string?.utf16.count)!))
let page = document?.page(at: 0)!
results.forEach { (result) in
let startIndex = result.range.location
let endIndex = result.range.location + result.range.length - 1
let selection = document?.selection(from: page!, atCharacterIndex: startIndex, to: page!, atCharacterIndex: endIndex)
print(selection!.bounds(for: page!))
let pdfAnnotation = PDFAnnotation(bounds: (selection?.bounds(for: page!))!, forType: .square, withProperties: nil)
document?.page(at: 0)?.addAnnotation(pdfAnnotation)
}
pdfView.document = document
return pdfView
}

然后点击

func annotationTapping(_ sender: NSClickGestureRecognizer){
print("------- annotationTapping ------")
}

如果有人通过添加观察者或类似的方式实现了这一目标?

谢谢

最佳答案

PDFView 已经附加了一个用于注释的点击手势识别器,因此无需添加另一个。当点击发生时,它将发布一个 PDFViewAnnotationHit 通知。注释对象可以在userInfo中找到。

makeUIView 或其他有意义的地方设置通知观察者。

NotificationCenter.default.addObserver(forName: .PDFViewAnnotationHit, object: nil, queue: nil) { (notification) in
if let annotation = notification.userInfo?["PDFAnnotationHit"] as? PDFAnnotation {
print(annotation.debugDescription)
}
}

或者更好的是,在 SwiftUI View 中处理通知。

 @State private var selectedAnnotation: PDFAnnotation?

var body: some View {
VStack {
Text("Selected Annotation Bounds: \(selectedAnnotation?.bounds.debugDescription ?? "none")")
SomeView()
.onReceive(NotificationCenter.default.publisher(for: .PDFViewAnnotationHit)) { (notification) in
if let annotation = notification.userInfo?["PDFAnnotationHit"] as? PDFAnnotation {
self.selectedAnnotation = annotation
}
}
}
}

关于ios - 有没有办法在点击时存储 pdf 注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62876964/

25 4 0
文章推荐: java - 在onTouchListener中检测onLongPress和onClick事件
文章推荐: java - 如何在 Spring Boot Rest Interface 中正确划分业务层和数据层
文章推荐: java - 在 Java 中如何从 Stream>> 到 ArrayList