TA的每日心情 | 汗 2024-10-15 10:05 |
---|
签到天数: 372 天 [LV.9]以坛为家II
|
1、枚举值- typedef NS_ENUM(NSInteger, UIBarButtonSystemItem) {
- UIBarButtonSystemItemDone,
- UIBarButtonSystemItemCancel,
- UIBarButtonSystemItemEdit,
- UIBarButtonSystemItemSave,
- UIBarButtonSystemItemAdd,
- UIBarButtonSystemItemFlexibleSpace,
- UIBarButtonSystemItemFixedSpace,
- UIBarButtonSystemItemCompose,
- UIBarButtonSystemItemReply,
- UIBarButtonSystemItemAction,
- UIBarButtonSystemItemOrganize,
- UIBarButtonSystemItemBookmarks,
- UIBarButtonSystemItemSearch,
- UIBarButtonSystemItemRefresh,
- UIBarButtonSystemItemStop,
- UIBarButtonSystemItemCamera,
- UIBarButtonSystemItemTrash,
- UIBarButtonSystemItemPlay,
- UIBarButtonSystemItemPause,
- UIBarButtonSystemItemRewind,
- UIBarButtonSystemItemFastForward,
- #if __IPHONE_3_0 <= __IPHONE_OS_VERSION_MAX_ALLOWED
- UIBarButtonSystemItemUndo,
- UIBarButtonSystemItemRedo,
- #endif
- #if __IPHONE_4_0 <= __IPHONE_OS_VERSION_MAX_ALLOWED
- UIBarButtonSystemItemPageCurl,
- #endif
- };
复制代码
2、对应图标UIBarButtonSystemItem
| Icon | Action | | Bookmarks | | Camera | | Add | | Trash | | Compose | | Search | | Orgaize | | Stop | | Refresh | | Play | | Pause | | Rewind | | FastForward | | Reply | | Redo | | Undo | |
|
|