gpt4 book ai didi

ios - 无法更改自定义 View 的框架大小

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:57:31 25 4
gpt4 key购买 nike

我有一个自定义的 uiview。我使用 xib 来布局 subview 并添加约束以自动布局它们。打击是在 IB 中。 enter image description here

enter image description here

现在我有一些代码覆盖了 initWithFrame: 方法。这是代码。

- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
MyCustomView *view = [[NSBundle mainBundle] loadNibNamed:@"MyCustomView" owner:self options:nil].firstObject;
[self addSubview:view];
}
return self;

并且,在其他一些来源中,我使用上面定义的 initWithFrame: 方法创建它并将其添加到 UIScrollView。我使用约束让 ScrollView 的框架适合屏幕尺寸。代码在这里。

CGRect contentRect = CGRectZero;
for (int index = 0;index < self.valueData.count;index ++) {
MyCustomView *cellView = [[MyCustomView alloc] initWithFrame:CGRectMake(0, CUSTOM_VIEW_HEIGHT * index, SCREEN_WIDTH, CUSTOM_VIEW_HEIGHT)];
[self.scrollView addSubview:cellView];
contentRect = CGRectUnion(contentRect, cellView.frame);
}
self.scrollView.contentSize = contentRect.size;

我在 iPhone 5s 模拟器中看到的内容:

enter image description here

但在 iPhone 6 模拟器中:

enter image description here

虽然我将框架的宽度设置为 SCREEN_WIDTH,但它们并没有占据屏幕的整个宽度,这是定义的:

#define SCREEN_WIDTH ([UIScreen mainScreen].bounds.size.width)

如何设置这些自定义 View 的宽度以适合多个设备的屏幕宽度?

已添加:这是自定义 View 中 UI 内容的所有约束。 enter image description here

enter image description here

enter image description here

最佳答案

混合使用 Autolayout 和 setFrame 通常不是一个好主意,它会在您尝试调试时带来很多麻烦。您是否查看过“Capture View Hierarchy”自动生成的约束是什么?

您真正想要做的不是依赖生成的约束(尤其是因为您不能依赖显示之前的 View /窗口大小)。实际上,您需要做一些非常重要的事情:

  1. 不要将多个 View 直接附加到 ScrollView 。你想要一个附加到 ScrollView 的 View ,以及其他所有内容作为的 subview 那。我通常称之为内容 View 。
  2. 确保您的内容 View 正确附加到您的 ScrollView 之前添加附加内容(无错误/警告)。
  3. 插入带有约束的 Assets View 。 0 向右和向左,0 向最后的看法。不管你是使用 constraintWithItem 还是constraintsWithVisualFormat。
  4. 将内容 View 的底部与最后插入的 subview 联系起来,这样它就有一个定义的高度,删除或降低任何其他高度限制的优先级。

关于ios - 无法更改自定义 View 的框架大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32901182/

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