我使用 [PDFView setNeedsDisplay:YES] 让 PDF View 重绘,它在 OSX 10.9-10.11 上运行良好。
但是,除非我放大或缩小 PDF 页面,否则它不起作用...

有没有其他方法可以立即重绘?代码如下:

NSRect      newBounds;
NSRect      currentBounds;
NSRect      dirtyRect;
NSPoint     mouseLoc;
NSPoint     endPt;

// Where is annotation now?
currentBounds = [_activeAnnotation bounds];

// Mouse in display view coordinates.
mouseLoc = [self convertPoint: [theEvent locationInWindow] fromView: NULL];

// Convert end point to page space.
if(activePage == nil)
    activePage =[_activeAnnotation page];

_LinePoint= [self convertPoint: mouseLoc toPage: activePage];
endPt = [self convertPoint: mouseLoc toPage: activePage];
if(_selectedIdx == 3) //ink
{
    [(PDFAnnotationInk*)_activeAnnotation removeBezierPath:_path];

    //endPt.x=_xPoint.x; //竖线
    //endPt.y=_xPoint.y; //横线

    [_path lineToPoint:endPt];  //  普通笔

    [(PDFAnnotationInk*)_activeAnnotation addBezierPath:_path];

    [self annotationChanged];
    [self setNeedsDisplay:YES];

    return;

更新 :

我发现 setNeedsDispaly 调用了 drawPage:toContext: 但是绘图代码在 drawPage:toContext: 中不起作用
- (void)drawPage:(PDFPage *)pdfPage toContext(CGContextRef)context
{
    [super drawPage: pdfPage toContext:context];
    NSBezierPath *line=[NSBezierPath bezierPath];
    [line moveToPoint:_xPoint];
    [line lineToPoint:NSMakePoint(150, 150)];
    [[NSColor redColor] set];
    [line setLineWidth:50] ;
    [line stroke];
}

调试说 CGContextSetFillColorWithColor: invalid context 0x0 和更多 invalid context 0x0 警告。
我在 drawPage:toContext: 中所做的是测试,只是使用 BezierPath 画一条线。

最佳答案

我有同样的麻烦。我第一次添加注释时,PDFView 会立即在页面上显示该注释。从那时起,添加或删除注释在代码中工作正常,但 PDFView 在我手动滚动 View 之前不会显示更改。

PDFKit 我试过:

previewView.layoutDocumentView()

for pageIndex in 0...pdf.pageCount - 1 {
  let page = pdf.page(at: pageIndex)!
  previewView.annotationsChanged(on: page)
}

NSView 我试过:
previewView.needsDisplay = true
previewView.needsLayout = true
previewView.documentView?.needsDisplay = true
previewView.updateLayer()

但没有运气。我也试过用代码滚动 PDFView ,但它不是一种偷偷刷新的可靠方法,通常不应该是这样做的方法。

关于objective-c - PDFView setNeedsDisplay :YES doesn't work on MacOS Sierra 10. 12,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39868300/

10-12 05:42