123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //
- // MASExampleDistributeView.m
- // Masonry iOS Examples
- //
- // Created by bibibi on 15/8/6.
- // Copyright (c) 2015年 Jonas Budelmann. All rights reserved.
- //
- #import "MASExampleDistributeView.h"
- @implementation MASExampleDistributeView
- - (id)init {
- self = [super init];
- if (!self) return nil;
- NSMutableArray *arr = @[].mutableCopy;
- for (int i = 0; i < 4; i++) {
- UIView *view = UIView.new;
- view.backgroundColor = [self randomColor];
- view.layer.borderColor = UIColor.blackColor.CGColor;
- view.layer.borderWidth = 2;
- [self addSubview:view];
- [arr addObject:view];
- }
-
- unsigned int type = arc4random()%4;
- switch (type) {
- case 0:
- [arr mas_distributeViewsAlongAxis:MASAxisTypeHorizon withFixedSpacing:20 leadSpacing:5 tailSpacing:5];
- [arr makeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(@60);
- make.height.equalTo(@60);
- }];
- break;
- case 1:
- [arr mas_distributeViewsAlongAxis:MASAxisTypeVertical withFixedSpacing:20 leadSpacing:5 tailSpacing:5];
- [arr makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(@0);
- make.width.equalTo(@60);
- }];
- break;
- case 2:
- [arr mas_distributeViewsAlongAxis:MASAxisTypeHorizon withFixedItemLength:30 leadSpacing:5 tailSpacing:5];
- [arr makeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(@60);
- make.height.equalTo(@60);
- }];
- break;
- case 3:
- [arr mas_distributeViewsAlongAxis:MASAxisTypeVertical withFixedItemLength:30 leadSpacing:5 tailSpacing:5];
- [arr makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(@0);
- make.width.equalTo(@60);
- }];
- break;
-
- default:
- break;
- }
-
- return self;
- }
- - (UIColor *)randomColor {
- CGFloat hue = ( arc4random() % 256 / 256.0 ); // 0.0 to 1.0
- CGFloat saturation = ( arc4random() % 128 / 256.0 ) + 0.5; // 0.5 to 1.0, away from white
- CGFloat brightness = ( arc4random() % 128 / 256.0 ) + 0.5; // 0.5 to 1.0, away from black
- return [UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:1];
- }
- @end
|