iPhone中的内置图像是否有文档记录,是否有它们的名字列表?

iPhone中的内置图像是否有文档记录,是否有它们的名字列表?,iphone,xcode,cocoa-touch,interface-builder,Iphone,Xcode,Cocoa Touch,Interface Builder,我偶然发现,如果在Interface Builder中创建一个UIButton,并在image字段中键入Plus,则按钮将显示+图像。键入减号也会得到类似的结果 我想知道这是不是一个bug,或者是可怜的程序员是否有办法从其他苹果应用程序中访问内置的通用GUI图像,比如绿色+、红色-、细节披露V形、红色大“删除联系人”或类似样式的按钮等 有没有其他人遇到过这种情况,或者知道在Xcode中从哪里访问这些东西 对我来说,它们应该是可用的,因为Apple HIG似乎都是为了让事情变得易于识别和直观,并以

我偶然发现,如果在Interface Builder中创建一个UIButton,并在image字段中键入Plus,则按钮将显示+图像。键入减号也会得到类似的结果

我想知道这是不是一个bug,或者是可怜的程序员是否有办法从其他苹果应用程序中访问内置的通用GUI图像,比如绿色+、红色-、细节披露V形、红色大“删除联系人”或类似样式的按钮等

有没有其他人遇到过这种情况,或者知道在Xcode中从哪里访问这些东西

对我来说,它们应该是可用的,因为Apple HIG似乎都是为了让事情变得易于识别和直观,并以其他应用程序使用它们的方式使用它们。

你可以获得s,一旦有了它,就可以搜索UIBarButtonItem。滚动到屏幕底部,您可以看到选项卡栏和导航栏的所有系统图像。

我在官方网站上找到了一个最新的(iOS7)UIBarButtonSystemItem图标列表,这可能会有所帮助

UIBarButtonSystemItemDone  
UIBarButtonSystemItemCancel  
UIBarButtonSystemItemEdit  
UIBarButtonSystemItemSave  
UIBarButtonSystemItemAdd  
UIBarButtonSystemItemFlexibleSpace  
UIBarButtonSystemItemFixedSpace  
UIBarButtonSystemItemCompose  
UIBarButtonSystemItemReply  
UIBarButtonSystemItemAction  
UIBarButtonSystemItemOrganize  
UIBarButtonSystemItemBookmarks  
UIBarButtonSystemItemSearch  
UIBarButtonSystemItemRefresh  
UIBarButtonSystemItemStop  
UIBarButtonSystemItemCamera  
UIBarButtonSystemItemTrash  
UIBarButtonSystemItemPlay  
UIBarButtonSystemItemPause  
UIBarButtonSystemItemRewind  
UIBarButtonSystemItemFastForward  
UIBarButtonSystemItemUndo  
UIBarButtonSystemItemRedo  
UIBarButtonSystemItemPageCurl  

还发现选中标记会产生一个图像。