如何使用 AutoLayout 以编程方式创建自定义 UITableViewCell

编程入门 行业动态 更新时间:2024-10-25 10:21:20
本文介绍了如何使用 AutoLayout 以编程方式创建自定义 UITableViewCell的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在尝试实现一个 UITableView,它的行为类似于 twitter 客户端的时间线.现在我只是试图在 UITableViewCell 中获取两个标签.正如 this Stack Overflow answer 所推荐的,我为每个布局使用了不同的重用标识符.我的布局很简单,由一个标签或两个标签组成.最终我将调整 UITableViewCells 的高度,但首先我需要让单元格填充内容.

I'm trying to implement a UITableView that will behave similarly to the timeline of a twitter client. Right now I'm simply attempting to get two labels inside a UITableViewCell. As recommended by this Stack Overflow answer, I'm using a different reuseIdentifier for each layouts. My layouts are simple, consisting of either a single label or two labels. Eventually I will be adjusting the height of the UITableViewCells but first I need to get the cells populated with content.

如果我使用 initWithFrame: 设置它们的框架,我可以获得标签,因此显示出来,但是没有实现约束.

I can get the labels so show up if I set their frame with initWithFrame:, however the constraints aren't being implemented.

  • 问题:是什么阻止了标签和约束的出现?我在 UITableViewCell 的实现中显然遗漏了一些东西,但我不知道它是什么.

  • Question: What is preventing the labels and constraints from appearing? I'm clearly missing something in my implementation of the UITableViewCell but I have no idea what it is.

第二个问题:我是否为 viewDidLoad 中的每个重用标识符正确注册了 UITableViewCell 类?

Secondary question: Am I registering the UITableViewCell class correctly for each reuseIdentifier in viewDidLoad?

这可能会让人觉得很困难,但 Interface Builder 让我很困惑,我想在代码中完成这一切.

This might come across as being difficult but Interface Builder confuses me, I would like to accomplish this all in code.

下面是名为 TVTCell.h 的自定义 UITableViewCell 的代码:

Here is the code for the custom UITableViewCell named TVTCell.h:

static NSString * const kCellIDTitle = @"CellWithTitle"; static NSString * const kCellIDTitleMain = @"CellWithTitleMain"; @interface TVTCell : UITableViewCell { NSString *reuseID; } @property (nonatomic, strong) UILabel *nameLabel; @property (nonatomic, strong) UILabel *mainLabel; @end

还有 TVTCell.m:

And TVTCell.m:

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; if (self) { reuseID = reuseIdentifier; nameLabel = [[UILabel alloc] init]; [nameLabel setTextColor:[UIColor blackColor]]; [nameLabel setBackgroundColor:[UIColor colorWithHue:32 saturation:100 brightness:63 alpha:1]]; [nameLabel setFont:[UIFont fontWithName:@"HelveticaNeue" size:18.0f]]; [nameLabel setTranslatesAutoresizingMaskIntoConstraints:NO]; [self.contentView addSubview:nameLabel]; mainLabel = [[UILabel alloc] init]; [mainLabel setTextColor:[UIColor blackColor]]; [mainLabel setBackgroundColor:[UIColor colorWithHue:66 saturation:100 brightness:63 alpha:1]]; [mainLabel setFont:[UIFont fontWithName:@"HelveticaNeue" size:18.0f]]; [mainLabel setTranslatesAutoresizingMaskIntoConstraints:NO]; [self.contentView addSubview:mainLabel]; [self.contentView setTranslatesAutoresizingMaskIntoConstraints:NO]; } return self; } - (void)updateConstraints { [super updateConstraints]; NSDictionary *views = NSDictionaryOfVariableBindings(nameLabel, mainLabel); if (reuseID == kCellIDTitle) { NSArray *constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[nameLabel]|" options: NSLayoutFormatAlignAllCenterX metrics:nil views:views]; [self.contentView addConstraints:constraints]; constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|[nameLabel]|" options: NSLayoutFormatAlignAllCenterX metrics:nil views:views]; [self.contentView addConstraints:constraints]; } if (reuseID == kCellIDTitleMain) { NSArray *constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[nameLabel]|" options: NSLayoutFormatAlignAllCenterX metrics:nil views:views]; [self.contentView addConstraints:constraints]; constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[mainLabel]|" options: NSLayoutFormatAlignAllCenterX metrics:nil views:views]; [self.contentView addConstraints:constraints]; constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|[nameLabel][mainLabel]|" options: NSLayoutFormatAlignAllLeft metrics:nil views:views]; [self.contentView addConstraints:constraints]; [self.contentView addConstraint:[NSLayoutConstraint constraintWithItem:nameLabel attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:0.0 constant:44.0]]; [self.contentView addConstraint:[NSLayoutConstraint constraintWithItem:nameLabel attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self.contentView attribute:NSLayoutAttributeNotAnAttribute multiplier:0.0 constant:1]]; } }

抱歉,代码太多了.这是我的 UITableView 的 tableView:cellForRowAtIndexPath:

Sorry, ton of code. Here's my UITableView's tableView:cellForRowAtIndexPath:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { if (indexPath.row == 0 || indexPath.row == 2 || indexPath.row == 3) { TVTCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellIDTitle forIndexPath:indexPath]; [[cell nameLabel] setText:[nameArray objectAtIndex:indexPath.row]]; return cell; } else if (indexPath.row == 1 || indexPath.row == 4 || indexPath.row == 5) { TVTCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellIDTitleMain forIndexPath:indexPath]; [[cell nameLabel] setText:[nameArray objectAtIndex:indexPath.row]]; [[cell mainLabel] setText:[dataArray objectAtIndex:indexPath.row]]; return cell; } else { UITableViewCell *badCell = [[UITableViewCell alloc] init]; NSLog(@"Warning! returning a cell that shouldnt be here"); badCell.textLabel.text = @"Warning!"; return badCell; } }

最后,UITableView 的 viewDidLoad 方法:

And lastly, the UITableView's viewDidLoad method:

- (void)viewDidLoad { [super viewDidLoad]; [[self tableView] registerClass:[TVTCell class] forCellReuseIdentifier:kCellIDTitle]; [[self tableView] registerClass:[TVTCell class] forCellReuseIdentifier:kCellIDTitleMain]; }

推荐答案

你的代码有几个问题.首先,我想你会发现,如果你做一些记录,updateConstraints 永远不会被调用.我会将所有代码放在 init 方法中.此外,您的约束中有几处错误.不需要将高度设置为 44 的约束,因为您已经将标签固定到单元格的到和底部.我不知道你想用最后一个做什么,看起来这会使 nameLabel 宽 1 点.此外,您不应该将内容视图的 translatesAutoresizingMaskIntoConstraints 设置为 NO,这会导致奇怪的效果.所以这是我认为你想要的代码:

There are several things wrong with your code. First, I think you'll find, if you do some logging, that updateConstraints is never called. I would put all the code in the init method. Also, there are several things wrong in your constraints. The constraint where you set the height to 44 is not needed since you already have the labels pinned to the to and bottom of the cell. I don't know what you're trying to do with that last one, it looks like that would make the nameLabel 1 point wide. Also, you shouldn't set the translatesAutoresizingMaskIntoConstraints to NO for the content view, that causes weird effects. So this is the code I think you want:

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; if (self) { reuseID = reuseIdentifier; nameLabel = [[UILabel alloc] init]; [nameLabel setTextColor:[UIColor blackColor]]; [nameLabel setBackgroundColor:[UIColor colorWithHue:32 saturation:100 brightness:63 alpha:1]]; [nameLabel setFont:[UIFont fontWithName:@"HelveticaNeue" size:18.0f]]; [nameLabel setTranslatesAutoresizingMaskIntoConstraints:NO]; [self.contentView addSubview:nameLabel]; mainLabel = [[UILabel alloc] init]; [mainLabel setTextColor:[UIColor blackColor]]; [mainLabel setBackgroundColor:[UIColor colorWithHue:66 saturation:100 brightness:63 alpha:1]]; [mainLabel setFont:[UIFont fontWithName:@"HelveticaNeue" size:18.0f]]; [mainLabel setTranslatesAutoresizingMaskIntoConstraints:NO]; [self.contentView addSubview:mainLabel]; NSDictionary *views = NSDictionaryOfVariableBindings(nameLabel, mainLabel); if (reuseID == kCellIDTitle) { NSArray *constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[nameLabel]|" options: 0 metrics:nil views:views]; [self.contentView addConstraints:constraints]; constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|[nameLabel]|" options: 0 metrics:nil views:views]; [self.contentView addConstraints:constraints]; } if (reuseID == kCellIDTitleMain) { NSArray *constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[nameLabel]|" options:0 metrics:nil views:views]; [self.contentView addConstraints:constraints]; constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[mainLabel]|" options: 0 metrics:nil views:views]; [self.contentView addConstraints:constraints]; constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|[nameLabel][mainLabel(==nameLabel)]|" options: 0 metrics:nil views:views]; [self.contentView addConstraints:constraints]; } } return self; }

更多推荐

如何使用 AutoLayout 以编程方式创建自定义 UITableViewCell

本文发布于:2023-11-28 07:34:32,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1641492.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:自定义   如何使用   方式   UITableViewCell   AutoLayout

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!