咳咳,上午剛發(fā)表的,中午就被大牛教做人了....
話不多說直接上圖
經(jīng)過大牛指點,原來...原來就這么簡單....好憂傷啊,感覺活著好累啊...
好了 不 bb 了 上代碼
_tableView = [[UITableView alloc]init];
_tableView.frame = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
_tableView.delegate = self;
_tableView.dataSource = self;
// 隱藏滑動條
_tableView.showsVerticalScrollIndicator = NO;
[self.view addSubview:_tableView];
UIView *header = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 80)];
header.backgroundColor = [UIColor orangeColor];
// 設(shè)置header
_tableView.tableHeaderView = header;
然后實現(xiàn)協(xié)議方法就哦了
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if (SCREEN_HEIGHT == 812)
{
return 108;
}
else
{
return 64;
}
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
_navigationView = [[UIView alloc]init];//創(chuàng)建一個視圖
_navigationView.backgroundColor = [UIColor redColor];
return _navigationView;
}
// MARK: -- UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView
numberOfRowsInSection:(NSInteger)section
{
return 30;
}
好了 就這樣