我在iPad上有一些奇怪的行为,我没有上iPhone。
我有一个Grouped表格视图,其中包含各个部分的部分和标题,问题是在iPad上没有显示最顶部分的标题,当向下滚动表格时,部分标题会在出现前一段时间出现屏幕。
滚动前
滚动后
用于创建部分标题的代码:
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
if (sectionTitle == nil || [sectionTitle isEqualToString:@""]) {
return nil;
}
// Create label with section title
UILabel *label = [[UILabel alloc] init] ;
label.frame = CGRectMake(12, 0, 300, 30);
label.backgroundColor = [UIColor clearColor];
label.textColor = [UIColor blackColor];
label.shadowColor = [UIColor whiteColor];
label.shadowOffset = CGSizeMake(0.0, 1.0);
label.font = [UIFont boldSystemFontOfSize:16];
label.text = sectionTitle;
UIImage *img = [UIImage imageNamed:@"header"];
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 0, 300, 44)];
imgView.image = img;
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 44)];
[view addSubview:imgView];
[view addSubview:label];
return view;
}
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
int aSection = [[self.sectionsToDisplay objectAtIndex:section] integerValue];
return [self.groupHeadings objectAtIndex:aSection];
}
我的TableView代码:
tableViewResult = [[UITableView alloc] initWithFrame:mainView.frame style:UITableViewStyleGrouped];
tableViewResult.separatorColor = [UIColor clearColor];
[mainView addSubview:tableViewResult];
我在另一个方法中设置委托和数据源,因为我在将任何数据加载到表中之前首先执行Web请求,即在完成Web请求时我做了:
tableViewResult.delegate = self;
tableViewResult.dataSource = self;
[tableViewResult reloadData];
一切都按预期工作,除了最顶部的标题,只在iPad上。
任何可能导致此行为的想法?
答案 0 :(得分:0)
解决问题的原因是将此功能更改为:
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
int aSection = [[self.sectionsToDisplay objectAtIndex:section] integerValue];
if([[self.groupHeadings objectAtIndex:aSection] isEqualToString:@""])
return nil;
return [self.groupHeadings objectAtIndex:aSection];
}