zoukankan      html  css  js  c++  java
  • UITableView cell 被选中效果

    //设置选中的方式。一共有三种。
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    
    //三种效果
    typedef enum {
        UITableViewCellSelectionStyleNone,
        UITableViewCellSelectionStyleBlue,
        UITableViewCellSelectionStyleGray
    } UITableViewCellSelectionStyle;
    
    //选中后的字体颜色设置
     cell.resultTableContent.highlightedTextColor = [UIColor blackColor];
  • 相关阅读:
    bzoj1797
    bzoj1266
    bzoj1497
    bzoj1412
    bzoj3156
    JSOI2014第三轮总结
    bzoj1855
    bzoj1044
    codeforces 371D
    codeforces 371B
  • 原文地址:https://www.cnblogs.com/qingjoin/p/2672325.html
Copyright © 2011-2022 走看看