• iOS边练边学--UITableViewCell的常见属性设置


     1 // 取消选中的样式(常用) 让当前 cell 按下无反应
     2 cell.selectionStyle = UITableViewCellSelectionStyleNone;
     3 
     4 // 设置选中的背景色,UIView无需设置UIView的尺寸
     5 UIView *selectedBackgroundView = [[UIView alloc] init];
     6 selectedBackgroundView.backgroundColor = [UIColor redColor];
     7 cell.selectedBackgroundView = selectedBackgroundView;
     8 
     9 // 设置默认的背景色,优先级低
    10 cell.backgroundColor = [UIColor blueColor];
    11 
    12 // 设置默认的背景色,优先级高
    13 UIView *backgroundView = [[UIView alloc] init];
    14 backgroundView.backgroundColor = [UIColor greenColor];
    15 cell.backgroundView = backgroundView;
    16 
    17 // backgroundView的优先级 > backgroundColor
    18 // 设置指示器,系统默认的几个选项
    19 // cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    20 // 也可以自己设置指示器,这里讲指示器做成了开关
    21 cell.accessoryView = [[UISwitch alloc] init];
  • 相关阅读:
    VS2005编译mysql5.1.68
    用boost库实现traceroute小工具
    linux内核选项部分翻译
    linux 内核中的锁机制RCU
    先装windows 还是linux ?
    U盘装ubuntu
    编译linux内核3.0
    root密码丢失了怎么办?
    linux配置文件
    新一代linux文件系统btrfs
  • 原文地址:https://www.cnblogs.com/gchlcc/p/5279763.html
Copyright © 2020-2023  润新知