我在Storyboard中使用UIScrollView,滚动视图顶部的子视图现在我无法在运行时更新UIScrollView的contentSize,height,setContentOffset .i已添加了scrollview .in Storyboard的约束。 我在故事板中添加了高度= 800的UIScrollview。现在在运行时我想更改它contentSize< = 1195。
我用这段代码来更新
upperscrol.contentSize = CGSizeMake(upperscrol.frame.size.width, hieght);
upperscrol.delegate=self;
upperscrol.userInteractionEnabled=YES;
设置setContentOffset
CGPoint bottomOffset = CGPointMake(0, [upperscrol contentSize].height - upperscrol.frame.size.height);
[upperscrol setContentOffset:bottomOffset animated:YES];
[self.view addSubview:upperscrol];
这是我的视图层次结构
在运行时更新uiscrollview高度的方法是什么