本文介绍了我的UIScrollView不与iOS6的自动布局工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经把一个UIScrollView的在我的UIViewController到我的故事板。当我用这个code:
I have put an UIScrollView in my UIViewController into my storyboard. When I use this code:
- (void)viewDidLoad
{
[super viewDidLoad];
[_scrollview setContentSize:CGSizeMake(_scrollview.bounds.size.width*2, _scrollview.bounds.size.height)];
[_scrollview setPagingEnabled:YES];
CGRect rect = _scrollview.bounds;
UIView* view = [[UIView alloc]initWithFrame:rect];
[view setBackgroundColor:[UIColor redColor]];
[_scrollview addSubview:view];
rect = CGRectOffset(rect, _scrollview.bounds.size.width, 0);
view = [[UIView alloc]initWithFrame:rect];
view.backgroundColor = [UIColor greenColor];
[_scrollview addSubview:view];
}
它工作正常不自动布局,但是当我使,矩形的价值观是等于0什么是相当于code。与自动布局?
It's works fine without auto-layout, but when I enable, "rect" values is equals to 0. What is the equivalent code with auto-layout ?
推荐答案
看来你是缺少有关的UIScrollView一些基本的东西,在自动布局环境。请仔细阅读
Seems that you are missing some basic stuff about UIScrollView in autolayout environment. Read carefully ios 6.0 release notes
您code应该是这样的:
Your code should look like:
- (void)viewDidLoad
{
[super viewDidLoad];
CGRect selfBounds = self.view.bounds;
CGFloat width = CGRectGetWidth(self.view.bounds);
CGFloat height = CGRectGetHeight(self.view.bounds);
[_scrollview setPagingEnabled:YES];
UIView* view1 = [[UIView alloc] initWithFrame:selfBounds];
[view1 setTranslatesAutoresizingMaskIntoConstraints:NO];
[view1 setBackgroundColor:[UIColor redColor]];
[_scrollview addSubview:view1];
UIView* view2 = [[UIView alloc]initWithFrame:CGRectOffset(selfBounds, width, 0)];
[view2 setTranslatesAutoresizingMaskIntoConstraints:NO];
view2.backgroundColor = [UIColor greenColor];
[_scrollview addSubview:view2];
[_scrollview addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"|[view1(width)][view2(width)]|" options:0 metrics:@{@"width":@(width)} views:NSDictionaryOfVariableBindings(view1,view2)]];
[_scrollview addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[view1(height)]|" options:0 metrics:@{@"height":@(height)} views:NSDictionaryOfVariableBindings(view1)]];
[_scrollview addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[view2(height)]|" options:0 metrics:@{@"height":@(height)} views:NSDictionaryOfVariableBindings(view2)]];
}
这篇关于我的UIScrollView不与iOS6的自动布局工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!