English 中文(简体)
• 如何在可可的工具包中添加其他应用。
原标题:How to add other application s icon to Toolbar in Cocoa?

我有一个窗子,有某些内容可加以审查、邮寄......

我决定,这样做的最佳途径是将适当的应用信标放在工具栏中,即邮件、预告......。

Trick is, how to do that? Is thee any way too access other s application package and have access to its icon? Or is there any other elegant way?

最佳回答

法典:

// Get icon
NSImage *theIcon = [[NSWorkspace sharedWorkspace] iconForFile:@"/Applications/Mail.app"];

// Display icon (irrelevant in your case)
[theIcon setSize:NSMakeSize(128, 128)];
[theImageView setImage:theIcon];
问题回答

这样做还有另一种方式,特别是如果你正在国际银行建造工具路障:

  • right-click application icon
  • copy it
  • open Preview
  • select New from Clipboard

您将在任何规模上获得全套应用信标。 你们可以出口这些产品,并将它们放在IB的图像中。





相关问题
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 ...

热门标签