ios7有标准图标吗?

时间:2014-04-05 22:01:47

标签: ios iphone ios7

我来自Android世界,是iOS的新手。 Android通过SDK发布了某些图标。标准的东西,如编辑,创建,保存,收藏。 iOS是否附带这些图标?如果不是,社区哪里有一个好地方可以获得共享,保存,收藏(星级)等常用图标?

3 个答案:

答案 0 :(得分:2)

使用:

- (id)initWithBarButtonSystemItem:(UIBarButtonSystemItem)systemItem target:(id)target action:(SEL)action; 

将UIBarButtons添加到工具栏的方法。

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSearch target:target action:action];

这些是可用的类型

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

答案 1 :(得分:0)

是的,你有一套标准按钮。

查找UIBarButton itemsUITabBar Button(您可以直接从.xib视图中看到)

希望它有所帮助。

答案 2 :(得分:0)

如果您没有尝试将这些图标添加为条形按钮项目,据我所知,无法直接获取图像。但是,您可以使用font来复制iOS7图标。 Here's字体提供的所有图片列表