gpt4 book ai didi

ios - ScrollView 中的 ContentView 不增加高度

转载 作者:行者123 更新时间:2023-11-29 01:28:29 26 4
gpt4 key购买 nike

我已经为我的ViewController设置了以下约束

enter image description here

然后我像这样添加自定义 View 。

-(void)setUI
{
int i;
for ( i=0; i<[array count]; i++)
{

NSLog(@"Object at index %i %@",i,[array objectAtIndex:i]);

UIView *view=[self GetAlertView:i];


float sizeOfContent = 0;

if (notY+view.frame.size.height>self.contentView.frame.size.height+self.contentView.frame.origin.y) {
CGRect frame=self.contentView.frame;
frame.size.height=notY;
self.contentView.frame=frame;
}


[self.contentView addSubview:view];
self.mainScroll.contentSize = self.contentView.frame.size;

NSLog(@"CONTENT VIEW FRAME HEIGHT==== %f",self.contentView.frame.origin.y+self.contentView.frame.size.height);

}


}

但我的问题是此内容 View 不会永久增加其大小。在日志猫中,我可以看到高度正在发生变化。

CONTENT VIEW FRAME HEIGHT==== 8913.000000

但它不是持久性。在 UI 中,我可以看到它的高度保持在一定高度,并且只有 3 个 subview 添加到内容 View 中,其他 View 不在内容 View 中。这是什么原因?请帮我谢谢

最佳答案

当您使用 AutoLayout 时,您应该避免设置 UIScrollView 的 contentSize,而是依赖 subview 的高度和底部约束让 UIScrollView 内部计算它。

其次,您正在使用不需要的 UIView 来呈现您的 subview 。您不需要 ContentView 来承载您的 subview 。直接将它们添加到 mainScroll View 。

使用此代码在 ScrollView 中垂直布局 subview 。在这里,我采用了一些假设,例如 view.width = mainScroll.widthview.width = view.height 并且 View 每个边界都有 5px 的填充。您可以根据需要进行更改。
首先,在您的类中创建一个实例变量:

UIView *lastView;  
NSInteger arrayCount;

然后用这个替换你的setUI代码

-(void)setUI
{
lastView = nil;
arrayCount = [array count];

for(NSInteger index =0; index < arrayCount; index++)
{
UIView *view = [self GetAlertView:i];
[self.mainScroll addSubview:view];

[view setTranslatesAutoresizingMaskIntoConstraints:NO];

[self.mainScroll addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[view]-0-|" options:0 metrics:nil views:@{@"view":view}]];

//--> If View is first then pin the top to main ScrollView otherwise to the last View.
if(lastView == nil && index == 0) {
[self.mainScroll addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-5-[view]" options:0 metrics:nil views:@{@"view":view}]];
}
else {
[self.mainScroll addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[lastView]-5-[view]" options:0 metrics:nil views:@{@"lastView":lastView, @"view":view}]];
}

[self.mainScroll addConstraint:[NSLayoutConstraint constraintWithItem:view attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self.mainScroll attribute:NSLayoutAttributeWidth multiplier:1.0 constant:0]];
[self.mainScroll addConstraint:[NSLayoutConstraint constraintWithItem:view attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:view attribute:NSLayoutAttributeWidth multiplier:1.0 constant:0]];

//--> If View is last then pin the bottom to mainScrollView bottom.
if(index == arrayCount-1) {
[self.mainScroll addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[view]-5-|" options:0 metrics:nil views:@{@"view":view}]];
}
//--> Assign the current View as last view to keep the reference for next View.
lastView = view;
}
}

关于ios - ScrollView 中的 ContentView 不增加高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33749500/

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