簡體   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