1.打开URL
#define PDF_PRODUCT_URL @"http://www.cisdem.com/pdf-password-remover-mac.html"
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:PDF_PRODUCT_URL]];
2.打开本地文件
#define PRProductName @"Cisdem PDFPasswordRemover"
NSString *fullPath = [[NSBundle mainBundle] pathForResource:PRProductName ofType:@"pdf"];
[[NSWorkspace sharedWorkspace] openFile:fullPath];
时间: 2024-10-19 22:05:51