iOS cell紧贴导航栏

//确保第一区域紧贴导航栏
- (void)viewWillAppear:(BOOL)animated
{
    CGRect frame = _tableView.tableHeaderView.frame;
    frame.size.height = 1;
    UIView *headerView = [[UIView alloc] initWithFrame:frame];
    [_tableView setTableHeaderView:headerView];
}
 
//section头部间距
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    
            return 0.01;//section头部高度
}
//section头部视图
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
    
    UIView *view=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 0)];
    view.backgroundColor = [UIColor clearColor];
    return view;
}
posted @ 2015-06-30 17:21  tongyuling  阅读(195)  评论(0)    收藏  举报