How to get standard Mac OS X icons to use in your app?

前端 未结 3 430
无人及你
无人及你 2021-01-18 22:50

How do you get standard Mac OS X icons to use in your design / app?

By standard icons I mean toolbar icons from this screenshots:

Is there a location where

3条回答
  •  -上瘾入骨i
    2021-01-18 23:01

    see +[NSImage imageNamed:(NSString)name] and the links in that for the different list of os defined images...

    eg.

    NSImage * img = [NSImage imageNamed:NSImageNameFolder];

    toolbar images specifically are listed:
    https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSImage_Class/index.html#//apple_ref/doc/constant_group/Toolbar_Named_Images

提交回复
热议问题