1

我正在使用自动布局在 iOS6 中使用 UIScrollView。我想做的是设置一个滚动视图,其中包含许多子视图(UIViews)。这些子视图是在循环中动态创建的。现在我想添加我的约束,以便它与自动布局一起使用。

在 viewDidLoad 我得到了这个代码:

scrollView.pagingEnabled = YES;
CGRect selfBounds = self.view.bounds;
CGFloat width = CGRectGetWidth(self.view.bounds);
CGFloat height = CGRectGetHeight(self.view.bounds);
NSMutableString *constraintBuilding = [NSMutableString stringWithFormat:@"|"];

NSArray *colors = [NSArray arrayWithObjects:[UIColor redColor], [UIColor greenColor], [UIColor blueColor], nil];
for (int i = 0; i < colors.count; i++) {
    CGFloat offset = width * i;
    UIView* view1 = [[UIView alloc] initWithFrame:CGRectOffset(selfBounds, offset, 0)];
    [view1 setTranslatesAutoresizingMaskIntoConstraints:NO];
    [view1 setBackgroundColor:[colors objectAtIndex:i]];
    [scrollView addSubview:view1];
    [scrollView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[view1(height)]|" options:0 metrics:@{@"height":@(height)} views:NSDictionaryOfVariableBindings(view1)]];
    [constraintBuilding appendString:[NSString stringWithFormat:@"[view%i(width)]",i+1]];
}

NSMutableArray *views = [[NSMutableArray alloc] init];

for (int j = 0; j < scrollView.subviews.count; j++) {
    if (![[scrollView.subviews objectAtIndex:j] isKindOfClass:[UIImageView class]]) {
        [views addObject:[scrollView.subviews objectAtIndex:j]];
    }
}


[constraintBuilding appendString:@"|"];
[scrollView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:constraintBuilding options:0 metrics:@{@"width":@(width*colors.count)} views:NSDictionaryOfVariableBindings(views)]];

循环工作得很好,但我会在最后一行出错

[scrollView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:constraintBuilding options:0 metrics:@{@"width":@(width*colors.count)} views:NSDictionaryOfVariableBindings(views)]];

constraintBuilding 说“|[view1(width)][view2(width)][view3(width)]|”实际上我没有 view2 和 view 3 但我不知道如何设置约束?!

那是个例外:

'NSInvalidArgumentException', reason: 'Unable to parse constraint format: 

view1 不是视图字典中的键。|[view1(宽度)][view2(宽度)][view3(宽度)]| ^'

为了测试,我的颜色数组中有 3 个对象,但稍后这个数字会动态变化。

谢谢你的帮助!

克里斯

编辑:

还有一件事。我读了这篇文章,它工作得很好。但不幸的是,它不在一个动态数量的循环中。:(

我从苹果读到这篇文章。但我仍然找不到我的答案。

4

2 回答 2

2

我认为有你的结果。只是测试和流动。

使用它 FOR 循环。

http://www.aeth.com/iOSBook/ch20.html

于 2013-09-30T03:53:37.623 回答
1

NSDictionaryOfVariableBindings(视图)

这条线上views是一个数组。这将创建一个包含单个条目的字典,其中的键views作为数组的对象。

传递给可视格式方法的视图字典必须为 VFL 字符串中使用的每个视图变量提供一个条目。

与其构建视图的可变数组,不如构建一个可变字典,在每个循环中添加创建垂直约束时创建的单视图字典。

然后,您可以在最终的视觉格式方法中使用这个完整的字典。

于 2013-09-30T06:31:49.283 回答