gpt4 book ai didi

iphone - 带有 Storyboard原型(prototype)的 UITableViewCell subview 的动态大小

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:50:22 26 4
gpt4 key购买 nike

我正在使用 Storyboard将其中一个原型(prototype)单元格定义为“自定义”并添加一个 UITextField。它的左侧有一个标签(带有静态文本)。它有点像“右侧细节”单元格类型,只是右侧部分是可编辑的。

有没有一种方法可以经济地调整文本字段的大小,使其从文本标签的末尾延伸到右边缘?左边的文本标签应该足够大以显示它的文本。

我知道 sizeToFitsizeWithFont:constrainedToSize:,但调整 subview 的大小似乎相当麻烦,每次回收单元格时都必须重复。

有没有一种方法可以使用 UIViewautoresizingMask,也许可以在 IB/storyboard 中指定它?

最佳答案

我觉得我在上一个问题上让你失望了,所以这里要付出更多的努力。

您可以尝试以下操作。这只是一个示例项目,可以给您一个大概的概念,但效果很好。

我创建了一个带有单个 TableView Controller 的空项目。这有一个硬编码的部分 (1) 和行 (10)。我有一个 Basic 类型的原型(prototype)单元。您可以将任何您喜欢的 View 设置为辅助 View ,所以我使用了一个文本字段。因此,所有的魔法都发生在 cellForRowAtIndexPath 中:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];

if (!cell.accessoryView)
{
UITextField *accessory = [[UITextField alloc] initWithFrame:CGRectMake(0.0, 0.0, 100.0, 30.0)];
accessory.borderStyle = UITextBorderStyleLine; // Just so you can see the effect
cell.accessoryView = accessory;
}

NSMutableString *text = [NSMutableString stringWithFormat:@"A"];

for (int i = 0; i < indexPath.row; i++) {
[text appendFormat:@"A"]; // Just to illustrate different sizes
}

cell.textLabel.text = text;

CGSize labelSize = [cell.textLabel.text sizeWithFont:cell.textLabel.font];
CGRect accessoryFrame = cell.accessoryView.frame;

accessoryFrame.size.width = cell.bounds.size.width - labelSize.width - 40;
// 40 is a magic number to prevent overlaps, you could be cleverer here
// You'd also want to restrict to some minimum width.
cell.accessoryView.frame = accessoryFrame;

return cell;
}

要点:

  • 您只需要调整附属 View 的大小。
  • 文本字段非常基本 - 通常您需要一个小工厂方法来为您返回一个,设置委托(delegate),可能还有一个工具栏作为带有上一个、下一个和完成按钮的附件 View
  • 将文本字段中输入的值分配回数据模型是留给读者的练习。

这会产生以下输出:

enter image description here

关于iphone - 带有 Storyboard原型(prototype)的 UITableViewCell subview 的动态大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9998226/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com