标签:
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;
标签:
原文地址:http://www.cnblogs.com/zhouchun-cool/p/5316490.html