5

path我可以在我的应用程序中使用 Preview.app愉快地打开 PDF 文件

[NSWorkspace.sharedWorkspace openFile: path];

但是,我想在某个页面上使用该文件启动 Preview.app。这可能吗,例如通过传递特定NSAppleEventDescriptor的 in NSWorkspace's

- (BOOL)openURLs:(NSArray *)urls withAppBundleIdentifier:(NSString *)bundleIdentifier options:(NSWorkspaceLaunchOptions)options additionalEventParamDescriptor:(NSAppleEventDescriptor *)descriptor launchIdentifiers:(NSArray **)identifiers

方法?QuickLook 可以做到这一点,我想模仿这种行为。

谢谢你的帮助!

4

1 回答 1

3

你可以通过 NSAppleScript 做到这一点。

下面是一个打开文件并跳转到指定页面的 NSWorkspace 类别方法:

- (void)openPreviewFile:(NSString*)filePath onPage:(int)pageNumber {
    [self openFile:filePath];

    NSString *sysEvents = @"System Events";

    NSString *source = [NSString stringWithFormat:@"tell application \"%@\" to activate\ntell application \"%@\" to keystroke \"g\" using {command down, option down}\ndelay %f\ntell application \"%@\" to keystroke \"%i\"\ntell application \"%@\" to keystroke return",
                        @"Preview", sysEvents, 0.5, sysEvents, pageNumber, sysEvents];

    NSAppleScript *script = [[[NSAppleScript alloc] initWithSource:source] autorelease];
    [script executeAndReturnError:nil];
}

这是这样做的:

  • 在 NSWorkspace 实例上调用 openFile:
  • 打开预览的转到页面对话框
  • 等待对话框弹出
  • 模拟应该被激活的页面的按键,然后按回车

然后,您可以像这样调用该方法:

[[NSWorkspace sharedWorkspace] openPreviewFile:@"/YOUR_PDF.pdf"
                                        onPage:3];

免责声明:如果用户为“转到页面...”菜单项定义了自定义键盘快捷键,则会中断!

于 2013-10-03T17:12:36.743 回答