繁体   English   中英

ios7是否带有标准图标?

[英]Does ios7 come with standard icons?

我来自Android世界,是iOS的新手。 Android随SDK一起提供了某些图标。 标准内容,例如编辑,创建,保存,收藏夹。 iOS是否带有这些图标? 如果不是,社区在哪里可以找到共享,保存,收藏(星号)等常用图标?

使用:

- (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,

是的,您有一组标准按钮。

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

希望能帮助到你。

据我所知,如果您不打算将这些图标添加为条形按钮项,则无法直接获取图像。 但是,有一种字体可用于复制iOS7图标。 是字体提供的所有图像的列表

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM