ios7 – 如何使用默认的IOS映像

前端之家收集整理的这篇文章主要介绍了ios7 – 如何使用默认的IOS映像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨,我是 IOS开发的新手.我知道如何在 IOS应用程序中使用图像.但是我不知道如何使用默认图像,如开发者站点中提到的共享或书签图标.我想用它们我必须下载这些图像集或那些可用在xcode?如果我们必须下载这些图像集,那么我可以得到这些图标.需要帮助谢谢

解决方法

开发人员没有直接访问这些图像.我的意思是你不能像这样初始化图像对象:
UIImage *image = [UIImage imageNamed:@"name_of_system_image"];

但是您可以使用系统类型显示一些图像.例如,您可以使用提供标准图标的系统类型来初始化UIBarButtonItem:
– (id)initWithBarButtonSystemItem:(UIBarButtonSystemItem)systemItem target:(id)target action:(SEL)action

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

原文链接:https://www.f2er.com/iOS/330623.html

猜你在找的iOS相关文章