自从我发现AutoLayout
我在任何地方都使用它,现在我正在尝试将它与tableHeaderView
一起使用。
我subclass
UIView
添加了所有内容(标签等...)我想要他们的约束,然后我将CustomView
添加到UITableView
'{ {1}}。
一切正常,但tableHeaderView
始终显示上方 UITableView
,上方我的意思是CustomView
是<强大> CustomView
以下无法看到!
似乎无论我做什么,UITableView
'height
的{{1}} 总是 0(宽度,x和y也是如此) )。
我的问题:是否可以完成此 而无需手动设置框架 ?
编辑:
我正在使用的UITableView
'tableHeaderView
有这些限制:
CustomView
我正在使用一个方便的库'KeepLayout',因为手动编写约束需要永远而且对于一个单一约束来说太多行,但这些方法是自我解释的。
subview
有这些限制:
_title = [[UILabel alloc]init];
_title.text = @"Title";
[self addSubview:_title];
[_title keep:[KeepTopInset rules:@[[KeepEqual must:5]]]]; // title has to stay at least 5 away from the supperview Top
[_title keep:[KeepRightInset rules:@[[KeepMin must:5]]]];
[_title keep:[KeepLeftInset rules:@[[KeepMin must:5]]]];
[_title keep:[KeepBottomInset rules:@[[KeepMin must:5]]]];
我不知道是否必须直接在UITableView
上设置一些约束,我认为CustomView的高度取决于其中_tableView = [[UITableView alloc]init];
_tableView.translatesAutoresizingMaskIntoConstraints = NO;
_tableView.delegate = self;
_tableView.dataSource = self;
_tableView.backgroundColor = [UIColor clearColor];
[self.view addSubview:_tableView];
[_tableView keep:[KeepTopInset rules:@[[KeepEqual must:0]]]];// These 4 constraints make the UITableView stays 0 away from the superview top left right and bottom.
[_tableView keep:[KeepLeftInset rules:@[[KeepEqual must:0]]]];
[_tableView keep:[KeepRightInset rules:@[[KeepEqual must:0]]]];
[_tableView keep:[KeepBottomInset rules:@[[KeepEqual must:0]]]];
_detailsView = [[CustomView alloc]init];
_tableView.tableHeaderView = _detailsView;
“title”的约束。 / p>
编辑2:经过另一次调查后,似乎正确计算了CustomView的高度和宽度,但CustomView的顶部仍然处于与UITableView顶部相同的位置,并且它们移动我滚动的时候在一起。
答案 0 :(得分:124)
我问了并回答了类似的问题here。总之,我添加了一次标题并使用它来查找所需的高度。然后可以将该高度应用于标题,并再次设置标题以反映更改。
- (void)viewDidLoad
{
[super viewDidLoad];
self.header = [[SCAMessageView alloc] init];
self.header.titleLabel.text = @"Warning";
self.header.subtitleLabel.text = @"This is a message with enough text to span multiple lines. This text is set at runtime and might be short or long.";
//set the tableHeaderView so that the required height can be determined
self.tableView.tableHeaderView = self.header;
[self.header setNeedsLayout];
[self.header layoutIfNeeded];
CGFloat height = [self.header systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height;
//update the header's frame and set it again
CGRect headerFrame = self.header.frame;
headerFrame.size.height = height;
self.header.frame = headerFrame;
self.tableView.tableHeaderView = self.header;
}
如果你有多行标签,这也依赖于自定义视图设置每个标签的preferredMaxLayoutWidth:
- (void)layoutSubviews
{
[super layoutSubviews];
self.titleLabel.preferredMaxLayoutWidth = CGRectGetWidth(self.titleLabel.frame);
self.subtitleLabel.preferredMaxLayoutWidth = CGRectGetWidth(self.subtitleLabel.frame);
}
或者更一般地说:
override func layoutSubviews() {
super.layoutSubviews()
for view in subviews {
guard let label = view as? UILabel where label.numberOfLines == 0 else { continue }
label.preferredMaxLayoutWidth = CGRectGetWidth(label.frame)
}
}
不幸的是,这仍然是必要的。这是布局过程的一个快速版本:
tableView.tableHeaderView = header
header.setNeedsLayout()
header.layoutIfNeeded()
header.frame.size = header.systemLayoutSizeFittingSize(UILayoutFittingCompressedSize)
tableView.tableHeaderView = header
我发现将它移动到UITableView上的扩展名是很有用的:
extension UITableView {
//set the tableHeaderView so that the required height can be determined, update the header's frame and set it again
func setAndLayoutTableHeaderView(header: UIView) {
self.tableHeaderView = header
header.setNeedsLayout()
header.layoutIfNeeded()
header.frame.size = header.systemLayoutSizeFittingSize(UILayoutFittingCompressedSize)
self.tableHeaderView = header
}
}
用法:
let header = SCAMessageView()
header.titleLabel.text = "Warning"
header.subtitleLabel.text = "Warning message here."
tableView.setAndLayoutTableHeaderView(header)
答案 1 :(得分:24)
我无法使用约束(在代码中)添加标题视图。如果我给出了我的视图宽度和/或高度约束,我会收到一条消息,上面写着:
"terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Auto Layout still required after executing -layoutSubviews. UITableView's implementation of -layoutSubviews needs to call super."
当我将故事板中的视图添加到我的表视图时,它没有显示约束,并且它作为标题视图工作正常,所以我认为标题视图的放置不是使用约束完成的。在这方面,它似乎不像普通的观点。
宽度自动是表格视图的宽度,您需要设置的唯一内容是高度 - 原点值被忽略,因此您为这些内容添加的内容无关紧要。例如,这个工作正常(对于rect来说也是0,0,0,80):
UIView *headerview = [[UIView alloc] initWithFrame:CGRectMake(1000,1000, 0, 80)];
headerview.backgroundColor = [UIColor yellowColor];
self.tableView.tableHeaderView = headerview;
答案 2 :(得分:11)
我在这里看到很多方法做了很多不必要的事情,但是在标题视图中使用自动布局并不需要那么多。你只需要创建你的xib文件,放置你的约束并像这样实例化它:
func loadHeaderView () {
guard let headerView = Bundle.main.loadNibNamed("CourseSearchHeader", owner: self, options: nil)?[0] as? UIView else {
return
}
headerView.autoresizingMask = .flexibleWidth
headerView.translatesAutoresizingMaskIntoConstraints = true
tableView.tableHeaderView = headerView
}
答案 3 :(得分:6)
另一种解决方案是将标题视图创建分配给下一个主线程调用:
- (void)viewDidLoad {
[super viewDidLoad];
// ....
dispatch_async(dispatch_get_main_queue(), ^{
_profileView = [[MyView alloc] initWithNib:@"MyView.xib"];
self.tableView.tableHeaderView = self.profileView;
});
}
注意:当加载的视图具有固定高度时,它会修复错误。当标题高度仅取决于其内容时,我还没有尝试过。
编辑:
您可以通过实施此function并在viewDidLayoutSubviews
- (void)viewDidLayoutSubviews {
[super viewDidLayoutSubviews];
[self sizeHeaderToFit];
}
答案 4 :(得分:3)
代码:
extension UITableView {
func sizeHeaderToFit(preferredWidth: CGFloat) {
guard let headerView = self.tableHeaderView else {
return
}
headerView.translatesAutoresizingMaskIntoConstraints = false
let layout = NSLayoutConstraint(
item: headerView,
attribute: .Width,
relatedBy: .Equal,
toItem: nil,
attribute:
.NotAnAttribute,
multiplier: 1,
constant: preferredWidth)
headerView.addConstraint(layout)
let height = headerView.systemLayoutSizeFittingSize(UILayoutFittingCompressedSize).height
headerView.frame = CGRectMake(0, 0, preferredWidth, height)
headerView.removeConstraint(layout)
headerView.translatesAutoresizingMaskIntoConstraints = true
self.tableHeaderView = headerView
}
}
答案 5 :(得分:3)
发生了奇怪的事情。 systemLayoutSizeFittingSize适用于iOS9,但在我的情况下不适用于iOS 8。所以这个问题很容易解决。只需通过插入高度为CGRectGetMaxY(yourview.frame)+ padding
,在超级调用更新标题视图边界后获取标题和viewDidLayoutSubviews中的底部视图的链接UPD:最简单的解决方案: 因此,在标题视图中放置子视图并将其固定为左,右,顶部。在该子视图中,您的子视图会出现自动高度限制。之后,将所有工作交给自动布局(无需计算)
- (void)viewDidLayoutSubviews {
[super viewDidLayoutSubviews];
CGFloat height = CGRectGetMaxY(self.tableView.tableHeaderView.subviews.firstObject.frame);
self.tableView.tableHeaderView.bounds = CGRectMake(0, 0, CGRectGetWidth(self.tableView.bounds), height);
self.tableView.tableHeaderView = self.tableView.tableHeaderView;
}
因此,子视图正在扩展/收缩,最后它会调用viewDidLayoutSubviews。当我们知道视图的实际大小时,所以设置headerView高度并通过重新分配来更新它。 像魅力一样工作!
也适用于页脚视图。
答案 6 :(得分:2)
您可以使用 systemLayoutSizeFittingSize 方法获取autolayout以提供大小。
然后,您可以使用它为您的应用程序创建框架。只要您需要知道内部使用autolayout的视图的大小,此技术就可以使用。
swift中的代码看起来像
//Create the view
let tableHeaderView = CustomTableHeaderView()
//Set the content
tableHeaderView.textLabel.text = @"Hello world"
//Ask auto layout for the smallest size that fits my constraints
let size = tableHeaderView.systemLayoutSizeFittingSize(UILayoutFittingCompressedSize)
//Create a frame
tableHeaderView.frame = CGRect(origin: CGPoint.zeroPoint, size: size)
//Set the view as the header
self.tableView.tableHeaderView = self.tableHeaderView
或在Objective-C
//Create the view
CustomTableHeaderView *header = [[CustomTableHeaderView alloc] initWithFrame:CGRectZero];
//Set the content
header.textLabel.text = @"Hello world";
//Ask auto layout for the smallest size that fits my constraints
CGSize size = [header systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];
//Create a frame
header.frame = CGRectMake(0,0,size.width,size.height);
//Set the view as the header
self.tableView.tableHeaderView = header
还应该注意,在这个特定的实例中,在子类中覆盖requiresConstraintBasedLayout,确实导致执行布局传递,但是这个布局传递的结果被忽略,系统框架被设置为tableView的宽度和0高度。
答案 7 :(得分:2)
以下对我有用。
UIView
作为标题视图。UIView
我看到的主要好处是限制帧计算。 Apple应该真正更新UITableView
的API,以便更轻松。
使用SnapKit的示例:
let layoutView = UIView(frame: CGRect(x: 0, y: 0, width: tableView.bounds.width, height: 60))
layoutView.backgroundColor = tableView.backgroundColor
tableView.tableHeaderView = layoutView
let label = UILabel()
layoutView.addSubview(label)
label.text = "I'm the view you really care about"
label.snp_makeConstraints { make in
make.edges.equalTo(EdgeInsets(top: 10, left: 15, bottom: -5, right: -15))
}
答案 8 :(得分:2)
为表格页脚视图扩展此解决方案http://collindonnell.com/2015/09/29/dynamically-sized-table-view-header-or-footer-using-auto-layout/:
@interface AutolayoutTableView : UITableView
@end
@implementation AutolayoutTableView
- (void)layoutSubviews {
[super layoutSubviews];
// Dynamic sizing for the header view
if (self.tableHeaderView) {
CGFloat height = [self.tableHeaderView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height;
CGRect headerFrame = self.tableHeaderView.frame;
// If we don't have this check, viewDidLayoutSubviews() will get
// repeatedly, causing the app to hang.
if (height != headerFrame.size.height) {
headerFrame.size.height = height;
self.tableHeaderView.frame = headerFrame;
self.tableHeaderView = self.tableHeaderView;
}
[self.tableHeaderView layoutIfNeeded];
}
// Dynamic sizing for the footer view
if (self.tableFooterView) {
CGFloat height = [self.tableFooterView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height;
CGRect footerFrame = self.tableFooterView.frame;
// If we don't have this check, viewDidLayoutSubviews() will get
// repeatedly, causing the app to hang.
if (height != footerFrame.size.height) {
footerFrame.size.height = height;
self.tableFooterView.frame = footerFrame;
self.tableFooterView = self.tableFooterView;
}
self.tableFooterView.transform = CGAffineTransformMakeTranslation(0, self.contentSize.height - footerFrame.size.height);
[self.tableFooterView layoutIfNeeded];
}
}
@end
答案 9 :(得分:1)
我的表头视图是一个UIView子类 - 我在初始化器中创建了一个contentView UIView,其边界与表头视图的框架相同,并将我的所有对象添加为该子视图。
然后在表标题视图的layoutSubviews
方法中而不是在初始化程序中添加对象的约束。这解决了崩溃。
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:CGRectMake(0, 0, 0, 44.0)];
if (self) {
UIView *contentView = [[UIView alloc] initWithFrame:self.bounds];
contentView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
// add other objects as subviews of content view
}
return self;
}
- (void)layoutSubviews
{
[super layoutSubviews];
// remake constraints here
}
答案 10 :(得分:1)
在大多数情况下,最好的解决方案就是不与框架打交道,而采用自动调整大小的蒙版:
// embrace autoresizing masks and let the framework add the constraints for you
headerView.translatesAutoresizingMaskIntoConstraints = true
headerView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
// figure out what's the best size based on the table view width
let width = self.tableView.frame.width
let targetSize = headerView.systemLayoutSizeFitting(CGSize(width: width, height: CGFloat.greatestFiniteMagnitude), withHorizontalFittingPriority: .required, verticalFittingPriority: .fittingSizeLevel)
headerView.frame.size = targetSize
self.tableView.tableHeaderView = headerView
通过使用自动调整大小蒙版,您可以告诉框架当超级视图更改其大小时视图应如何更改其大小。但这是根据您设置的初始帧进行的。
答案 11 :(得分:1)
extension UITableView {
var autolayoutTableViewHeader: UIView? {
set {
self.tableHeaderView = newValue
guard let header = newValue else { return }
header.setNeedsLayout()
header.layoutIfNeeded()
header.frame.size =
header.systemLayoutSizeFitting(UIView.layoutFittingCompressedSize)
self.tableHeaderView = header
}
get {
return self.tableHeaderView
}
}
}
答案 12 :(得分:1)
我的AutoLayout工作得非常好:
= link_to_add_association 'add payement', f, :payements, render_options: { locals: {payement_type: 'new', old_payement_number: 'any number'}}
答案 13 :(得分:1)
你可以在header和tableview之间添加顶部+水平位置约束,正确放置它(如果标题本身包含所有必要的内部布局约束以获得正确的框架)
tableViewController中的viewDidLoad方法
headerView.translatesAutoresizingMaskIntoConstraints = false
tableView.tableHeaderView = headerView
headerView.widthAnchor.constraint(equalTo: tableView.widthAnchor).isActive = true
headerView.topAnchor.constraint(equalTo: tableView.topAnchor).isActive = true
headerView.centerXAnchor.constraint(equalTo: tableView.centerXAnchor).isActive = true
答案 14 :(得分:0)
旧帖子。但是一个好帖子。这是我的2美分。
首先,确保您的标题视图已排列其约束,以便它可以支持它自己的内在内容大小。然后执行以下操作。
//ViewDidLoad
headerView.translatesAutoresizingMaskIntoConstraints = false
headerView.configure(title: "Some Text A")
//Somewhere else
headerView.update(title: "Some Text B)
private var widthConstrained = false
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
if widthConstrained == false {
widthConstrained = true
tableView.addConstraint(NSLayoutConstraint(item: headerView, attribute: .width, relatedBy: .equal, toItem: tableView, attribute: .width, multiplier: 1, constant: 0))
headerView.layoutIfNeeded()
tableView.layoutIfNeeded()
}
}
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
super.viewWillTransition(to: size, with: coordinator)
coordinator.animate(alongsideTransition: { (context) in
self.headerView.layoutIfNeeded()
self.tableView.layoutIfNeeded()
}, completion: nil)
}
答案 15 :(得分:0)
在我的情况下,由于某种原因使用systemLayoutSizeFittingSize的方法不起作用。对我有用的是对HotJard发布的解决方案的修改(他的原始解决方案在iOS 8中也不起作用)。我需要做的是在标题视图中放置一个子视图并将其固定在左侧,右侧,顶部(不要固定到底部)。在子视图中使用autolayout放置所有内容,在代码中执行以下操作:
$Info = [pscustomobject][ordered]@{
"Hostname" = $Hostname
"FormFactor" = $FormFactor
"SystemManufacturer" = $SystemManufacturer
"SystemModel" = $SystemModel
"ServiceTag" = $ServiceTag
"Memory" = $TotalPhysicalMemory
"Processor" = $ProcessorInstalled
"OS" = $OperatingSystem
}
$Info | Export-Csv -Path "Inventory.csv" -NoTypeInformation -Append
答案 16 :(得分:0)
我能够通过以下方法实现它(这适用于页脚相同的方式)。
首先,您需要小UITableView
分机:
Swift 3
extension UITableView {
fileprivate func adjustHeaderHeight() {
if let header = self.tableHeaderView {
adjustFrame(header)
}
}
private func adjustFrame(_ view: UIView) {
view.frame.size.height = calculatedViewHeight(view)
}
fileprivate func calculatedHeightForHeader() -> CGFloat {
if let header = self.tableHeaderView {
return calculatedViewHeight(header)
}
return 0.0
}
private func calculatedViewHeight(_ view: UIView) -> CGFloat {
view.setNeedsLayout()
let height = view.systemLayoutSizeFitting(UILayoutFittingCompressedSize).height
return height
}
}
在视图控制器类实现中:
// this is a UIView subclass with autolayout
private var headerView = MyHeaderView()
override func loadView() {
super.loadView()
// ...
self.tableView.tableHeaderView = headerView
self.tableView.sectionHeaderHeight = UITableViewAutomaticDimension
// ...
}
override func viewWillLayoutSubviews() {
super.viewWillLayoutSubviews()
// this is to prevent recursive layout calls
let requiredHeaderHeight = self.tableView.calculatedHeightForHeader()
if self.headerView.frame.height != requiredHeaderHeight {
self.tableView.adjustHeaderHeight()
}
}
有关标题UIView
的子视图实现的说明:
您必须100%确定标题视图是否具有正确的自动布局设置。我建议从只有一个高度约束的简单标题视图开始,然后尝试上面的设置。
覆盖requiresConstraintBasedLayout
并返回true
:
class MyHeaderView: UIView {
// ...
override static var requiresConstraintBasedLayout : Bool {
return true
}
// ...
}
答案 17 :(得分:0)
分享我的方法。
UITableView+XXXAdditions.m
- (void)xxx_setTableHeaderView:(UIView *)tableHeaderView layoutBlock:(void(^)(__kindof UIView *tableHeaderView, CGFloat *containerViewHeight))layoutBlock {
CGFloat containerViewHeight = 0;
UIView *backgroundView = [[UIView alloc] initWithFrame:CGRectZero];
[backgroundView addSubview:tableHeaderView];
layoutBlock(tableHeaderView, &containerViewHeight);
backgroundView.frame = CGRectMake(0, 0, 0, containerViewHeight);
self.tableHeaderView = backgroundView;
}
用法。
[self.tableView xxx_setTableHeaderView:myView layoutBlock:^(__kindof UIView * _Nonnull tableHeaderView, CGFloat *containerViewHeight) {
*containerViewHeight = 170;
[tableHeaderView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(@20);
make.centerX.equalTo(@0);
make.size.mas_equalTo(CGSizeMake(130, 130));
}];
}];
答案 18 :(得分:0)
对于Xamarin用户:
public override void ViewDidLayoutSubviews()
{
base.ViewDidLayoutSubviews();
TableviewHeader.SetNeedsLayout();
TableviewHeader.LayoutIfNeeded();
var height = TableviewHeader.SystemLayoutSizeFittingSize(UIView.UILayoutFittingCompressedSize).Height;
var frame = TableviewHeader.Frame;
frame.Height = height;
TableviewHeader.Frame = frame;
}
假设您将tableview的标题视图命名为TableviewHeader
答案 19 :(得分:0)
以下是UIViewController
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
if headerView.frame.size.height == 0 {
headerView.label.preferredMaxLayoutWidth = view.bounds.size.width - 20
let height = headerView.systemLayoutSizeFitting(UILayoutFittingCompressedSize).height
headerView.frame.size = CGSize(width: tableView.bounds.size.width, height: height)
}
}
答案 20 :(得分:0)
任何基于约束的UIView
都可以很好tableHeaderView
。
之前需要设置tableFooterView
,然后对tableFooterView
和tableHeaderView
施加额外的尾随约束。
- (void)viewDidLoad {
........................
// let self.headerView is some constraint-based UIView
self.tableView.tableFooterView = [UIView new];
[self.headerView layoutIfNeeded];
self.tableView.tableHeaderView = self.headerView;
[self.tableView.leadingAnchor constraintEqualToAnchor:self.headerView.leadingAnchor].active = YES;
[self.tableView.trailingAnchor constraintEqualToAnchor:self.headerView.trailingAnchor].active = YES;
[self.tableView.topAnchor constraintEqualToAnchor:self.headerView.topAnchor].active = YES;
[self.tableFooterView.trailingAnchor constraintEqualToAnchor:self.headerView.trailingAnchor].active = YES;
}
可以找到所有详细信息和代码段here
答案 21 :(得分:0)
我想出了一种解决方法。将您的autolayout wrriten xib头视图包装在一个空的uiview包装器中,并将该头视图分配给tableView的tableViewHeader属性。
UIView *headerWrapper = [[UIView alloc] init];
AXLHomeDriverHeaderView *headerView = [AXLHomeDriverHeaderView loadViewFromNib];
[headerWrapper addSubview:headerView];
[headerView mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(headerWrapper);
}];
self.tableView.tableHeaderView = headerView;
答案 22 :(得分:0)
以下是适用于ios 12中的UITableViewController的内容
将UIView悬停在TableView中用于标题的所有原型单元上方,并将其放置在页脚的所有原型单元下方。根据需要设置页眉和页脚。设置所有必需的约束。
现在使用以下扩展方法
public static class UITableVIewExtensions
{
public static void MakeHeaderAutoDimension(this UITableView tableView)
{
if (tableView.TableHeaderView is UIView headerView) {
var size = headerView.SystemLayoutSizeFittingSize(UIView.UILayoutFittingCompressedSize);
if (headerView.Frame.Size.Height != size.Height) {
var frame = headerView.Frame;
frame.Height = size.Height;
headerView.Frame = frame;
tableView.TableHeaderView = headerView;
tableView.LayoutIfNeeded();
}
}
}
public static void MakeFooterAutoDimension(this UITableView tableView)
{
if (tableView.TableFooterView is UIView footerView) {
var size = footerView.SystemLayoutSizeFittingSize(UIView.UILayoutFittingCompressedSize);
if (footerView.Frame.Size.Height != size.Height) {
var frame = footerView.Frame;
frame.Height = size.Height;
footerView.Frame = frame;
tableView.TableFooterView = footerView;
tableView.LayoutIfNeeded();
}
}
}
}
并在UITableViewController子类的ViewDidLayoutSubviews中调用它
public override void ViewDidLayoutSubviews()
{
base.ViewDidLayoutSubviews();
TableView.MakeHeaderAutoDimension();
TableView.MakeFooterAutoDimension();
}
答案 23 :(得分:0)
提示:如果你使用方法setAndLayoutTableHeaderView,你应该更新子视图的框架,所以在这种情况下UILabel的preferredMaxLayoutWidth应该在调用systemLayoutSizeFittingSize之前调用,不要在layoutSubview中调用。
答案 24 :(得分:0)
我遇到了获取375pt宽度的问题,对我有用的唯一方法是中继出tableView以获取正确的宽度。与设置框架大小相比,我还更喜欢自动布局。
这是最适合我的版本:
public static void AutoLayoutTableHeaderView(this UITableView tableView, UIView header)
{
tableView.TableHeaderView = header;
tableView.SetNeedsLayout();
tableView.LayoutIfNeeded();
header.WidthAnchor.ConstraintEqualTo(tableView.Bounds.Width).Active = true;
tableView.TableHeaderView = header;
}
extension UITableView {
//set the tableHeaderView so that the required height can be determined, update the header's frame and set it again
func setAndLayoutTableHeaderView(header: UIView) {
self.tableHeaderView = header
self.setNeedsLayout()
self.layoutIfNeeded()
header.widthAnchor.widthAnchor.constraint(equalTo: self.bounds.width).isActive = true
self.tableHeaderView = header
}
}
答案 25 :(得分:0)
我创建了UITableView
的子类,并将UIStackView
用于页眉和页脚,还可以设置多个视图。
答案 26 :(得分:-1)
接受的答案仅对具有单个部分的表有用。对于多部分UITableView
,只需确保您的标题继承自UITableViewHeaderFooterView
,您就可以了。
作为替代方案,只需将当前标头嵌入contentView
的{{1}}即可。与UITableViewHeaderFooterView
完全相同。