码迷,mamicode.com
首页 > 其他好文 > 详细

TableView的代码设置分组及cell的分割线设置

时间:2016-03-24 18:26:09      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

    HomeTableView * tableView=[[HomeTableView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height-64) style:UITableViewStyleGrouped];  //UITableViewStyleGrouped分组,然后页眉在跟随tableView滑动到顶端的时候不会停留

    tableView.delegate = self;

    tableView.dataSource = self;

  tableView.separatorColor = [UIColor redColor];       //设置分割线颜色

   tableView.separatorInset = UIEdgeInsetsMake(0,80, 0, 80);        // 设置端距,这里表示separator离左边和右边均80像素
 

    [self.view addSubview:tableView];

//    tableView.separatorStyle = UITableViewCellSeparatorStyleNone;//隐藏UITableViewCell的分隔线

    self.tableView = tableView;

TableView的代码设置分组及cell的分割线设置

标签:

原文地址:http://www.cnblogs.com/zhouchun-cool/p/5316490.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!