zoukankan      html  css  js  c++  java
  • UIBarButtonSystemItem 样式

      使用时需要注意创建方式的区别:

    01 typedef enum {
    02     UIBarButtonSystemItemDone,
    03     UIBarButtonSystemItemCancel,
    04     UIBarButtonSystemItemEdit, 
    05     UIBarButtonSystemItemSave, 
    06     UIBarButtonSystemItemAdd,
    07     UIBarButtonSystemItemFlexibleSpace,
    08     UIBarButtonSystemItemFixedSpace,
    09     UIBarButtonSystemItemCompose,
    10     UIBarButtonSystemItemReply,
    11     UIBarButtonSystemItemAction,
    12     UIBarButtonSystemItemOrganize,
    13     UIBarButtonSystemItemBookmarks,
    14     UIBarButtonSystemItemSearch,
    15     UIBarButtonSystemItemRefresh,
    16     UIBarButtonSystemItemStop,
    17     UIBarButtonSystemItemCamera,
    18     UIBarButtonSystemItemTrash,
    19     UIBarButtonSystemItemPlay,
    20     UIBarButtonSystemItemPause,
    21     UIBarButtonSystemItemRewind,
    22     UIBarButtonSystemItemFastForward,
    23 #if __IPHONE_3_0 <= __IPHONE_OS_VERSION_MAX_ALLOWED
    24     UIBarButtonSystemItemUndo,
    25     UIBarButtonSystemItemRedo,
    26 #endif
    27 #if __IPHONE_4_0 <= __IPHONE_OS_VERSION_MAX_ALLOWED
    28     UIBarButtonSystemItemPageCurl,
    29 #endif
    30 } UIBarButtonSystemItem;

    图片如下:

    UIBarButtonSystemItemAdd

    UIBarButtonSystemItemCompose

    UIBarButtonSystemItemReply

    UIBarButtonSystemItemAction

    UIBarButtonSystemItemOrganize

    UIBarButtonSystemItemBookmarks

    UIBarButtonSystemItemSearch

    UIBarButtonSystemItemRefresh

    UIBarButtonSystemItemStop

    UIBarButtonSystemItemCamera

    UIBarButtonSystemItemTrash

    UIBarButtonSystemItemPlay

    UIBarButtonSystemItemPause

    UIBarButtonSystemItemRewind

    UIBarButtonSystemItemFastForward

    UIBarButtonSystemItemUndo

    UIBarButtonSystemItemRedo

  • 相关阅读:
    深拷贝(deep clone)与浅拷贝(shallow clone)
    wait和notify
    Java实现简单RPC框架(转)
    Eclipse 搭建Struts2
    手写HashMap实践
    JVM 类加载器ClassLoader源码学习笔记
    Java 内存模型学习笔记
    Struts2 入门笔记
    struts2 拦截器
    Btrace 拦截时机
  • 原文地址:https://www.cnblogs.com/code-changeworld/p/4659406.html
Copyright © 2011-2022 走看看