我的UITableView出现了一些奇怪的行为。
我的UITableView标头和第一个单元格之间有间距。知道为什么会这样吗?
#define kDefaultTableViewSectionHeight 50
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.posts.count;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return kDefaultTableViewCellHeight;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
return kDefaultTableViewSectionHeight;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, kDefaultTableViewSectionHeight)];
UIButton *hot = [[UIButton alloc] initWithFrame:CGRectMake(self.view.frame.size.width/2, 0, 100, kDefaultTableViewSectionHeight)];
UIButton *new = [[UIButton alloc] initWithFrame:CGRectMake(self.view.frame.size.width/2-100, 0, 100, kDefaultTableViewSectionHeight)];
UIView *underline = [[UIView alloc] initWithFrame:CGRectMake(new.frame.origin.x, view.frame.size.height-10, 70, 1)];
UIView *border = [[UIView alloc] initWithFrame:CGRectMake(0, view.frame.size.height-1, view.frame.size.width, 1)];
[border setBackgroundColor:[UIColor colorWithRed:50.0/255.0 green:50.0/255.0 blue:50.0/255.0 alpha:1]];
self.underline = underline;
if (self.new)
[underline setCenter:CGPointMake(new.center.x, underline.center.y)];
else
[underline setCenter:CGPointMake(hot.center.x, underline.center.y)];
[underline setBackgroundColor:[UIColor whiteColor]];
[view setBackgroundColor:[UIColor blackColor]];
[hot setTitle:@"Hot" forState:UIControlStateNormal];
[hot setTag:2];
[hot setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[hot addTarget:self action:@selector(selectQueryType:) forControlEvents:UIControlEventTouchUpInside];
[hot.titleLabel setFont:[UIFont fontWithName:@"Avenir-Heavy" size:20.0]];
[new setTitle:@"New" forState:UIControlStateNormal];
[new setTag:1];
[new setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[new addTarget:self action:@selector(selectQueryType:) forControlEvents:UIControlEventTouchUpInside];
[new.titleLabel setFont:[UIFont fontWithName:@"Avenir-Heavy" size:20.0]];
[view addSubview:new];
[view addSubview:hot];
[view addSubview:underline];
[view addSubview:border];
return view;
}
我尝试了以下代码来解决问题,但这只是减少了UITableView顶部和UINavigationBar之间的空间:
/*
if ([[UIDevice currentDevice].systemVersion floatValue] >= 7){
self.postTableview.contentInset = UIEdgeInsetsMake(-8, 0, 0, 0);
} */
但这只是减少了UITableView顶部和UINavigationbar之间的间距。
答案 0 :(得分:0)
我认为您将tableHeaderView
属性与节标题视图混淆。您正在调用的委托方法tableview:viewForHeaderInSection:
设置节的标题而不是UITableView
本身的标题。在-numberOfSectionsInTableView:
中,您只返回1个部分,因此您只需将自定义标题添加为tableview的标题,而不是将其作为tableview中第一部分的标题。这并不能解决您的具体问题,但考虑到tableview中只有1个部分,它似乎是一个更好的解决方案。
在-viewDidLoad
中,您只需将tableHeaderView
属性设置为自定义视图,如下所示:
- (void)viewDidLoad{
//...
_tableview.tableHeaderView = [self myTableHeader];
}
- (UIView *)myTableHeader{
//Return custom header view
}