zoukankan      html  css  js  c++  java
  • UITableViewCell 单元格样式

    UITableViewCell 单元格样式作用

    1 typedef NS_ENUM(NSInteger, UITableViewCellStyle) {
    2     UITableViewCellStyleDefault,    // Simple cell with text label and optional image view (behavior of UITableViewCell in iPhoneOS 2.x)
    3     UITableViewCellStyleValue1,        // Left aligned label on left and right aligned label on right with blue text (Used in Settings)
    4     UITableViewCellStyleValue2,        // Right aligned label on left with blue text and left aligned label on right (Used in Phone/Contacts)
    5     UITableViewCellStyleSubtitle    // Left aligned label on top and left aligned label on bottom with gray text (Used in iPod).
    6 };             // available in iPhone OS 3.0

    UITableViewCellStyleDefault 默认类型 可显示 标题+可选图像

    UITableViewCellStyleValue1                      (图像占大格标题在和明细处于同一行 文字堆叠) 标题+明细+图像

     UITableViewCellStyleValue2        不显示图像,标题+明细 文字变亮蓝色

     UITableViewCellStyleSubtitle        (图像占大格标题在上明细在下)标题+明细+图像

  • 相关阅读:
    CD4051
    sbit和sfr的定义
    EEPROM与FLASH的区别
    九LWIP学习笔记之最后的战役
    八LWIP学习笔记之用户编程接口(NETCONN)
    七LWIP学习笔记之传输控制协议(TCP)
    六LWIP学习笔记之用户数据报协议(UDP)
    java实现二叉查找树
    线程的锁对象
    MAP
  • 原文地址:https://www.cnblogs.com/zhangdashao/p/4507244.html
Copyright © 2011-2022 走看看