let photos = [NSURL(string: "/photo1.png")!, NSURL(string: "/photo2.png")!]
NSWorkspace.sharedWorkspace().openURLs(photos, withAppBundleIdentifier: "com.apple.Preview", options: NSWorkspaceLaunchOptions.Default, additionalEventParamDescriptor: nil, launchIdentifiers: nil)
我尝试了上面的代码。它返回true并打开预览应用程序但不打开照片。数组中的单个项目也不起作用。我做错了什么?