我有这段代码在页面视图中添加页脚视图
UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0.0f,0.0f,320.0f,80.0f)];
UILabel *tableFooter = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 20, 20)];
tableFooter.textColor = [UIColor blueColor];
tableFooter.backgroundColor = [self.tableView backgroundColor];
tableFooter.opaque = YES;
tableFooter.font = [UIFont boldSystemFontOfSize:15];
tableFooter.text = @"test";
[footerView addSubview:tableFooter];
self.tableView.tableFooterView = footerView;
但是当我运行这个时,我没有看到代码底部的标签,我是我的视图,然后将我的视图设置为页脚,我看到了额外的空间而不是标签?< / p>
不确定为什么会这样?
由于