如何使用iOS 8 Size Classes和Autolayout

时间:2015-06-04 07:35:42

标签: objective-c ios8 uiscrollview xcode6.1

我在Storyboard中使用UIScrollView,滚动视图顶部的子视图现在我无法在运行时更新UIScrollView的contentSize,height,setContentOffset .i已添加了scrollview .in Storyboard的约束。 我在故事板中添加了高度= 800的UIScrollview。现在在运行时我想更改它contentSize< = 1195。 enter image description here

我用这段代码来更新

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高度的方法是什么

enter image description here

0 个答案:

没有答案