【发布时间】:2020-06-15 11:43:13
【问题描述】:
如果我写的话,我在 10.14 工作:
NSOpenPanel *panel;
NSArray* fileTypes = [NSArray arrayWithObjects:@"pdf", @"PDF", nil];
panel = [NSOpenPanel openPanel];
[panel setFloatingPanel:YES];
[panel setCanChooseDirectories:NO];
[panel setCanChooseFiles:YES];
[panel setAllowsMultipleSelection:YES];
[panel setAllowedFileTypes:fileTypes];
int i = [panel runModal];
if(i == NSOKButton){
return [panel URLs];
我无法在带有“.pdf”扩展名的文件夹中导航,例如“test.pdf”。
有人遇到过这个问题吗?
最好的问候
【问题讨论】:
标签: macos nsopenpanel