• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 如何让 UITableView 标题的这个简单布局使用 AutoLayout 工作?

[复制链接]
菜鸟教程小白 发表于 2022-12-12 10:47:42 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我很惭愧发布此消息,但我变得绝望。

谈到自动布局,我是个菜鸟。这主要是因为我的应用程序中有近 60 个不同的屏幕。为什么要改变有效的方法?无论如何,我不使用 XIBs/NIBs/Storyboards,因为任何时候我需要对应用程序范围的 UI 进行更改,我都必须修复一堆东西。相反,我有自己的一组 UIViewController 子类。其中一个只有一个 UITableView,很像 UITableViewController。我可以在睡梦中制作 UITableViews。

我有一个新屏幕,需要在表格 View 的标题中添加几个按钮。我正在尝试使用 AutoLayout 做得更好,所以我会尽可能地使用它。没有进一步的叙述,这里有一个非常简短的独立示例。

#import "AppDelegate.h"

@interface TestViewController : UIViewController<UITableViewDataSource, UITableViewDelegate>
@property (nonatomic, strong) NSArray *rows;
@end

@implementation TestViewController
- (void) loadView {
    UITableView *tv = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStyleGrouped];
    [tv setAutoresizingMask:UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth];
    [tv setDelegate:self];
    [tv setDataSource:self];
    [self setView:tv];

    UIView *tableHeader = [[UIView alloc] init];
    [tableHeader setTranslatesAutoresizingMaskIntoConstraints:NO];
    [tv setTableHeaderView:tableHeader];

    UIButton *selectProfileButton = [UIButton buttonWithType:UIButtonTypeCustom];
    [selectProfileButton setTranslatesAutoresizingMaskIntoConstraints:NO];
    [selectProfileButton setShowsTouchWhenHighlighted:YES];
    [selectProfileButton setTitle"Select Profile..." forState:UIControlStateNormal];
    [tableHeader addSubview:selectProfileButton];

    UIButton *editProfileButton = [UIButton buttonWithType:UIButtonTypeCustom];
    [editProfileButton setTranslatesAutoresizingMaskIntoConstraints:NO];
    [editProfileButton setImage:[UIImage imageNamed"EditAccessoryIcon"] forState:UIControlStateNormal];
    [tableHeader addSubview:editProfileButton];


    UIEdgeInsets padding = UIEdgeInsetsMake(5, 10, 5, 5);

    // select button in NW corner
    [tableHeader addConstraint:[NSLayoutConstraint constraintWithItem:selectProfileButton attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual
                                                               toItem:tableHeader attribute:NSLayoutAttributeTop multiplier:1.0 constant:padding.top]];
    [tableHeader addConstraint:[NSLayoutConstraint constraintWithItem:selectProfileButton attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual
                                                               toItem:tableHeader attribute:NSLayoutAttributeLeft multiplier:1.0 constant:padding.left]];
    [tableHeader addConstraint:[NSLayoutConstraint constraintWithItem:selectProfileButton attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual
                                                               toItem:tableHeader attribute:NSLayoutAttributeBottom multiplier:1.0 constant:-padding.bottom]];

    // edit button in NE corner
    [tableHeader addConstraint:[NSLayoutConstraint constraintWithItem:editProfileButton attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual
                                                               toItem:tableHeader attribute:NSLayoutAttributeTop multiplier:1.0 constant:padding.top]];
    [tableHeader addConstraint:[NSLayoutConstraint constraintWithItem:editProfileButton attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual
                                                               toItem:tableHeader attribute:NSLayoutAttributeRight multiplier:1.0 constant:-padding.right]];
    [tableHeader addConstraint:[NSLayoutConstraint constraintWithItem:editProfileButton attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual
                                                               toItem:tableHeader attribute:NSLayoutAttributeBottom multiplier:1.0 constant:-padding.bottom]];

    // spacing between buttons
    [tableHeader addConstraint:[NSLayoutConstraint constraintWithItem:selectProfileButton attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual
                                                               toItem:editProfileButton attribute:NSLayoutAttributeLeft multiplier:1.0 constant:-10.0]];
}

- (NSInteger) tableViewUITableView *)tableView numberOfRowsInSectionNSInteger)section { return [[self rows] count]; }

- (UITableViewCell *) tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier"cell"];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier"cell"];
        [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
    }

    [[cell textLabel] setText:[[self rows] objectAtIndex:[indexPath row]]];

    return cell;
}

@end

@implementation AppDelegate
- (BOOL)applicationUIApplication *)application didFinishLaunchingWithOptionsNSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    TestViewController *test = [[TestViewController alloc] init];
    [test setRows[@"1", @"2", @"3"]];
    [[self window] setRootViewController:test];

    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}
@end

不幸的是,在运行时我得到了这个:

2014-07-11 13:18:48.502 TestTableHeader[9478:60b] *** Assertion failure in -[UITableView layoutSublayersOfLayer:], /SourceCache/UIKit_Sim/UIKit-2935.137/UIView.m:8794
2014-07-11 13:18:48.505 TestTableHeader[9478:60b] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Auto Layout still required after executing -layoutSubviews. UITableView's implementation of -layoutSubviews needs to call super.'
*** First throw call stack:
(
    0   CoreFoundation                      0x017ed1e4 __exceptionPreprocess + 180
    1   libobjc.A.dylib                     0x0156c8e5 objc_exception_throw + 44
    2   CoreFoundation                      0x017ed048 +[NSException raise:format:arguments:] + 136
    3   Foundation                          0x0114c4de -[NSAssertionHandler handleFailureInMethodbject:file:lineNumber:description:] + 116
    4   UIKit                               0x0029ba38 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 567
    5   libobjc.A.dylib                     0x0157e82b -[NSObject performSelector:withObject:] + 70
    6   QuartzCore                          0x03c5845a -[CALayer layoutSublayers] + 148
    7   QuartzCore                          0x03c4c244 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 380
    8   QuartzCore                          0x03c583a5 -[CALayer layoutIfNeeded] + 160
    9   UIKit                               0x0035dae3 -[UIViewController window:setupWithInterfaceOrientation:] + 304
    10  UIKit                               0x00273aa7 -[UIWindow _setRotatableClient:toOrientation:updateStatusBar:duration:force:isRotating:] + 5212
    11  UIKit                               0x00272646 -[UIWindow _setRotatableClient:toOrientation:updateStatusBar:duration:force:] + 82
    12  UIKit                               0x00272518 -[UIWindow _setRotatableViewOrientation:updateStatusBar:duration:force:] + 117
    13  UIKit                               0x002725a0 -[UIWindow _setRotatableViewOrientation:duration:force:] + 67
    14  UIKit                               0x0027163a __57-[UIWindow _updateToInterfaceOrientation:duration:force:]_block_invoke + 120
    15  UIKit                               0x0027159c -[UIWindow _updateToInterfaceOrientation:duration:force:] + 400
    16  UIKit                               0x002722f3 -[UIWindow setAutorotates:forceUpdateInterfaceOrientation:] + 870
    17  UIKit                               0x002758e6 -[UIWindow setDelegate:] + 449
    18  UIKit                               0x0034fb77 -[UIViewController _tryBecomeRootViewControllerInWindow:] + 180
    19  UIKit                               0x0026b474 -[UIWindow addRootViewControllerViewIfPossible] + 591
    20  UIKit                               0x0026b5ef -[UIWindow _setHidden:forced:] + 312
    21  UIKit                               0x0026b86b -[UIWindow _orderFrontWithoutMakingKey] + 49
    22  UIKit                               0x002763c8 -[UIWindow makeKeyAndVisible] + 65
    23  TestTableHeader                     0x00002dfa -[AppDelegate application:didFinishLaunchingWithOptions:] + 890
    24  UIKit                               0x0022614f -[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] + 309
    25  UIKit                               0x00226aa1 -[UIApplication _callInitializationDelegatesForURL:payload:suspended:] + 1810
    26  UIKit                               0x0022b667 -[UIApplication _runWithURL:payload:launchOrientation:statusBarStyle:statusBarHidden:] + 824
    27  UIKit                               0x0023ff92 -[UIApplication handleEvent:withNewEvent:] + 3517
    28  UIKit                               0x00240555 -[UIApplication sendEvent:] + 85
    29  UIKit                               0x0022d250 _UIApplicationHandleEvent + 683
    30  GraphicsServices                    0x037e2f02 _PurpleEventCallback + 776
    31  GraphicsServices                    0x037e2a0d PurpleEventCallback + 46
    32  CoreFoundation                      0x01768ca5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53
    33  CoreFoundation                      0x017689db __CFRunLoopDoSource1 + 523
    34  CoreFoundation                      0x0179368c __CFRunLoopRun + 2156
    35  CoreFoundation                      0x017929d3 CFRunLoopRunSpecific + 467
    36  CoreFoundation                      0x017927eb CFRunLoopRunInMode + 123
    37  UIKit                               0x0022ad9c -[UIApplication _run] + 840
    38  UIKit                               0x0022cf9b UIApplicationMain + 1225
    39  TestTableHeader                     0x00002fed main + 141
    40  libdyld.dylib                       0x01e34701 start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException

根据我的阅读,这意味着我缺少一个约束。 UIButtons 有一个固有的大小,所以我只需要设置它们的位置。容器 UIView 将由 UITableView 调整大小,因此无需执行任何操作。 (我什至尝试设置咯咯笑的高度——我没有咯咯笑。)

我在哪里搞砸了?

谢谢!

更新了示例代码和堆栈以提供简短的独立示例。



Best Answer-推荐答案


我遇到了同样的问题。我认为这不是由缺少约束引起的。而是因为 UITableView 显然没有正确处理带有自动布局的页眉/页脚。对我有用的解决方法是使用 systemLayoutSizeFittingSize: 方法设置框架:

//initialize tableHeader, add subviews and constraints
CGSize size = [tableHeader systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];
tableHeader.frame = (CGRect){.origin = CGPointZero, .size = size};

self.tableView.tableHeaderView = tableHeader;

请注意,我没有translatesAutoresizingMaskIntoConstraints 设置为 NO

另外,您似乎还没有添加所有需要的约束。您只定位按钮,但您的 tableHeader 不知道如何计算其 自己的 宽度和高度。您可能需要使 selectProfileButton(或其他按钮)的底部等于 tableHeader 的底部,并在按钮之间添加(最小)水平间距。
另外,据我所知,UITableView 将扩展 tableHeader 的宽度,而不考虑任何约束。

关于ios - 如何让 UITableView 标题的这个简单布局使用 AutoLayout 工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24686899/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap