gpt4 book ai didi

iphone - 如何水平自动拉伸(stretch) UISegmented Control 以填充完整的 UITableViewCell?

转载 作者:可可西里 更新时间:2023-11-01 04:44:47 26 4
gpt4 key购买 nike

如何水平自动拉伸(stretch) UISegmented 控件以填充整个 UITableViewCell?以一种在方向改变后它也会自动调整大小的方式。

我已经尝试了以下方法,但这仍然不起作用。分段控件出现在左侧的单元格中,但不会水平拉伸(stretch)。

    NSArray *itemArray = [NSArray arrayWithObjects: @"Feet", @"Metric", nil];
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:itemArray];
segmentedControl.selectedSegmentIndex = [self.config.isMetric boolValue] ? 1 : 0;
segmentedControl.contentMode = UIViewContentModeScaleToFill;
[cell.contentView addSubview:segmentedControl];
cell.contentView.contentMode = UIViewContentModeScaleToFill;
[segmentedControl release];

最佳答案

您需要为 UISegmentedControl 设置框架,在您的情况下,它与单元格的框架相同。

segmentedControl.frame = cell.frame;
segmentedControl.autoresizingMask = UIViewAutoresizingFlexibleWidth;

关于iphone - 如何水平自动拉伸(stretch) UISegmented Control 以填充完整的 UITableViewCell?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7605336/

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