有人知道如何在NSOpenPanel
对话框中预选文件吗?
以前曾多次询问过,但这些问题都没有得到解决方案。设置nameFieldStringValue无效,因为打开的对话框没有用户键入名称的文本字段。设置directoryURL仅设置对话框中的当前目录。
答案 0 :(得分:7)
试试这样: -
NSOpenPanel *op=[NSOpenPanel openPanel];
[op setDirectoryURL:[NSURL URLWithString:@"file://localhost/Users/Home/Desktop/yourfile.sh/"]];
[op runModal];