English 中文(简体)
NS Director-File 类型被折旧。 替换是什么?
原标题:NSDirectoryFileType is deprecated. What s the replacement?

页: 1 观点显示名录等级(不一定是地方)。 我愿在清单中显示每个项目的icon,即使用NSWorkspace s-iconForFileType:的Im。 方法,因为我可以使用<代码>-iconForFile:,因为道路总是地方性的(可以是FTP、SFTP等)。

I use NSDirectoryFileType I m 接到警告说,这在Snow Leopard被抹去。 我如何完成这项任务?

基本上,鉴于档案名称(以及它是否是名录),我需要一种不解释的方式,才能获得任何特定档案(和目录)的目录,而不是全当地的道路。

if ([(EDFileStoreItem *)item type] == EDFileStoreItemDirectory) {
    // WARNING: Deprecated in OS X 10.6
    [(EDImageAndTextCell *)cell setIconImage:[[NSWorkspace sharedWorkspace] iconForFileType:NSDirectoryFileType]];
}

<><>UPDATE: 奥克,我表示:

NSImage *directoryIcon = [NSImage imageNamed:NSImageNameFolder];
最佳回答
NSImage *directoryIcon = [NSImage imageNamed:NSImageNameFolder];

只有Snow Leopard,AFAIK。

问题回答

暂无回答




相关问题
C#和Lotus Notes附录一

我正在使用C#,并需要附上一张空白(shortcut/link)档案和电子邮件给一个彩票账户。 问题是一对一幅通用形象的不实之词,没有像......那样显示双fold。

Load the Default Icon For the Shell

The default icon in Vista is listed under: HKEY_CLASSES_ROOT Unknown DefaultIcon As: %SystemRoot%System32shell32.dll,0 I want to load a 48x48 version of that Icon in C++. I have tried: ...

How to access Google/Gmail/Gchat/Reader user icons

I m building a Google Reader client and wonder if it s possible to access a user s profile image (aka avatar) directly. When I navigate to the images in Reader itself, I find that they point to URLs ...

How to tell Windows Explorer to refresh its icons?

Once my installer finishes installing new versions of my application s exe, I d like to tell Explorer to use the new exe s icons for its shortcuts. However, I cannot figure out how to do this. From ...

Outlook 2003 - Add an icon column to a View?

I want to add a custom column to the Inbox which is a Yes/No column. I want an icon to show in the Yes case. How can I do this? Everything I ve looked up is either about adding a column through the ...

热门标签