2011-10-25 108 views
3

我有一個帶有滾動條的PDFView。我想綁定一個鍵盤快捷方式來水平滾動。以編程方式水平滾動PDFView

垂直滾動我這樣做

[pdfView scrollLineUp:自我]

和它工作正常。

對於水平我沒有成功

想這(和許多變化)
NSScrollView *scrollView = [pdfView enclosingScrollView]; 
NSView *documentView = [scrollView documentView]; 
NSRect point = [documentView visibleRect]; 
point.origin.x -= 4.0; 
[documentView scrollRectToVisible:point]; // [self.centerViewController.pdfView scrollRectToVisible:point]; 

回答

0

當你要滾動的文檔視圖,您需要使用scrollToPoint:方法。看看this Apple guide。它包含可幫助你的代碼片段。

相關問題