我的 UITableView 在 iPad 而不是 iPhone 上有某种不可见的标题/插图。
我尝试了以下所有方法来删除这个不需要的标题/插图,但没有成功:
- (void)viewDidLoad
{
[super viewDidLoad];
self.tableview.sectionHeaderHeight = 0.f;
self.tableview.sectionFooterHeight = 0.f;
self.tableview.tableHeaderView = nil;
self.tableview.tableFooterView = nil;
self.tableview.contentInset = UIEdgeInsetsZero;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 0.f;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 0.f;
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return @"";
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
return [[[UIView alloc] initWithFrame:CGRectNull] autorelease];
}
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
return [[[UIView alloc] initWithFrame:CGRectNull] autorelease];
}