我来自Android世界,是iOS的新手。 Android通过SDK发布了某些图标。标准的东西,如编辑,创建,保存,收藏。 iOS是否附带这些图标?如果不是,社区哪里有一个好地方可以获得共享,保存,收藏(星级)等常用图标?
答案 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 items
或UITabBar Button
(您可以直接从.xib视图中看到)
希望它有所帮助。
答案 2 :(得分:0)