如何使用用户喜欢的文件夹填充NSPopUpButton

时间:2012-08-19 12:22:03

标签: objective-c cocoa directory favorites

我是Mac的编程新手,如果我的问题太傻了,请原谅我。

我正在编写一个小应用程序,我需要设置一个目标文件夹。 我认为,Firefox或Safari使用“另存为...”对话框的方法不是仅使用NSButton “选择文件夹”,而是一个非常用户友好的。

使用NSPopUpButton,可以从用户的收藏夹或最后使用的文件夹中选择一个文件夹。另外,我会添加一个最顶层的条目“选择...”,什么会打开NSOpenPanel

我的问题是:如何获取用户最喜欢的文件夹,例如在Finder应用程序中,用我们填充NSPopUpButton

这是Firefox中的样子: "save as" dialog

1 个答案:

答案 0 :(得分:2)

您可以在Application Services框架中找到相关的功能,并且可以获得这样的项目列表:

LSSharedFileListRef favorites = LSSharedFileListCreate(NULL, kLSSharedFileListFavoriteItems, NULL);
CFArrayRef snapshot = LSSharedFileListCopySnapshot(favorites, NULL);

CFIndex snapshotCount = CFArrayGetCount(snapshot);
for (CFIndex i = 0; i < snapshotCount; ++i) {
    LSSharedFileListItemRef item = (LSSharedFileListItemRef)CFArrayGetValueAtIndex(snapshot, i);
    CFURLRef itemURL = NULL;
    LSSharedFileListItemResolve(item, kLSSharedFileListNoUserInteraction | kLSSharedFileListDoNotMountVolumes, &itemURL, NULL);

    NSLog(@"%@", itemURL);
    if (itemURL != NULL) {
        CFRelease(itemURL);
    }
}
CFRelease(snapshot);
CFRelease(favorites);

当我在计算机上运行时,我得到:

nwnode://domain-AirDrop
file://localhost/Applications/
file://localhost/System/Library/CoreServices/Finder.app/Contents/Resources/MyLibraries/myDocuments.cannedSearch/
file://localhost/Users/dave/
file://localhost/Users/dave/Desktop/
file://localhost/Users/dave/Developer/
file://localhost/Users/dave/Documents/
file://localhost/Users/dave/Downloads/
file://localhost/Users/dave/Dropbox/

对应于:

enter image description here