• ios UITableView的style的区别与用法,以及分割线的显示与隐藏


    ******************tableview style******************************************************

    // tableview style不同的区别

    1、style=UITableViewStyleGrouped  默认会有headview和footview,头尾会空出一些距离,headview和footview会随tableview一起滑动,

      _saleTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, FRAMEW(self.view),  FRAMEH(self.view) - 56  - 64) style: UITableViewStyleGrouped];

     

    2、style=UITableViewStylePlain  默认没有headview和footview,自定义的headview和footview不会随tableview一起滑动,

      _saleTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, FRAMEW(self.view),  FRAMEH(self.view) - 56  - 64) style: UITableViewStylePlain];

     

    ******************关于分割线******************************************************

    1、//从新设置cell的背景,可以让cell分割线消失

      UIView *tempView = [[UIView alloc] init];

      tempView.backgroundColor=[UIColor whiteColor];

      [cell setBackgroundView:tempView];

     

    2、//也可以让分割线消失

      _saleTableView.separatorStyle = UITableViewCellSeparatorStyleNone;

      然后在viewcell里面自定义分割线
     
  • 相关阅读:
    转:matplotlib画图,plt.xx和ax.xx之间有什么差异
    转:Python __call__()方法,可调用对象
    训练集,验证集,测试集,交叉验证
    Visio画图和导出图的时候,去除多余白色背景
    在线jupyter notebook
    dfs序
    codeforces 877b
    codeforce864d
    codeforce868c
    查看本地git查看git公钥,私钥的方式
  • 原文地址:https://www.cnblogs.com/shen5214444887/p/9546516.html
Copyright © 2020-2023  润新知