masonry自適應(yīng)文字大小

//
//  YellowViewController.m
//  MasonryTest
//
//  Created by 舒通 on 2017/1/11.
//  Copyright ? 2017年 shutong. All rights reserved.
//

#import <Masonry.h>
#import "YellowViewController.h"
#import "ViewController.h"

@interface YellowViewController ()

@property (nonatomic, strong) UIView *yellowView;
@property (nonatomic, strong) UIView *blueView;
@property (nonatomic, strong) UIView *greenView;
@property (nonatomic, strong) UILabel *textLabel;

@end

@implementation YellowViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor whiteColor];
    // Do any additional setup after loading the view.
    
    [self createView:self.index];
}


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


#pragma mark - creat UI
- (void) createView:(NSInteger)index {
    switch (index) {
        case 10:{
//            設(shè)置內(nèi)邊距
            [self.yellowView mas_makeConstraints:^(MASConstraintMaker *make) {
                make.left.equalTo(self.view).with.offset(10);
                make.top.equalTo(self.view).with.offset(10);
                make.right.equalTo(self.view).with.offset(-10);
                make.bottom.equalTo(self.view).with.offset(-10);
            }];
        }
            break;
        case 11:{
//            設(shè)置內(nèi)邊距
            [self.blueView mas_makeConstraints:^(MASConstraintMaker *make) {
//                下右不需要寫(xiě)負(fù)號(hào),insets方法中已經(jīng)為我們做了取反的操作了
                make.edges.equalTo(self.view).with.insets(UIEdgeInsetsMake(10, 10, 10, 10));
            }];
            
            
        }
            break;
        case 12:{
            [self.greenView mas_makeConstraints:^(MASConstraintMaker *make) {
                make.center.equalTo(self.view);
         // 這里通過(guò)mas_equalTo給size設(shè)置了基礎(chǔ)數(shù)據(jù)類(lèi)型的參數(shù)渐夸,參數(shù)為CGSize的結(jié)構(gòu)體
                make.size.mas_equalTo(CGSizeMake(300, 300));
            }];
            
            __weak typeof(self)weakSelf = self;
            dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(4.f * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
                [weakSelf.greenView mas_updateConstraints:^(MASConstraintMaker *make) {
                    __strong typeof(weakSelf)blockSelf = weakSelf;
                    make.centerX.equalTo(blockSelf.view).offset(100);
                    make.size.mas_equalTo(CGSizeMake(100, 100));
                }];
            });
            
        }
            break;
        case 13:{
            self.textLabel.text = @"這是測(cè)試的字符串剥懒。能看到1虫溜、2、3個(gè)步驟牲迫,第一步當(dāng)然是上傳照片了耐朴,要上傳正面近照哦。上傳后盹憎,網(wǎng)站會(huì)自動(dòng)識(shí)別你的面部筛峭,如果覺(jué)得識(shí)別的不準(zhǔn),你還可以手動(dòng)修改一下陪每。左邊可以看到16項(xiàng)修改參數(shù)影晓,最上面是整體修改,你也可以根據(jù)自己的意愿單獨(dú)修改某項(xiàng)檩禾,將鼠標(biāo)放到選項(xiàng)上面挂签,右邊的預(yù)覽圖會(huì)顯示相應(yīng)的位置。";
            
            [self.textLabel mas_makeConstraints:^(MASConstraintMaker *make) {
                make.center.equalTo(self.view);
                
//                設(shè)置寬度小于等于200
                make.width.lessThanOrEqualTo(@200);
//                設(shè)置高度大于等于10
                make.height.greaterThanOrEqualTo(@0);
            }];
            
            UIView *view = [[UIView alloc]init];
            view.backgroundColor = [UIColor redColor];
            [self.view addSubview:view];
            [view mas_makeConstraints:^(MASConstraintMaker *make) {
                make.top.mas_equalTo(self.textLabel.mas_bottom).offset(10);
                make.size.mas_equalTo(CGSizeMake(self.view.frame.size.width, 20));
            }];
        }
            break;
            
        case 14:{
            /**
             Masonry為我們提供了三個(gè)默認(rèn)的方法盼产,priorityLow()饵婆、priorityMedium()、priorityHigh()戏售,這三個(gè)方法內(nèi)部對(duì)應(yīng)著不同的默認(rèn)優(yōu)先級(jí)侨核。
             除了這三個(gè)方法,我們也可以自己設(shè)置優(yōu)先級(jí)的值蜈项,可以通過(guò)priority()方法來(lái)設(shè)置。
             
             Masonry也幫我們定義好了一些默認(rèn)的優(yōu)先級(jí)常量续挟,分別對(duì)應(yīng)著不同的數(shù)值紧卒,優(yōu)先級(jí)最大數(shù)值是1000。
             */
            [self.yellowView mas_makeConstraints:^(MASConstraintMaker *make) {
                make.center.equalTo(self.view);
                make.width.equalTo(self.view).priorityLow();
                make.width.equalTo(@20).priorityHigh();
                make.height.equalTo(self.view).priority(200);
                make.height.equalTo(@100).priority(1000);
                
            }];
            
        }
            break;
            
        case 15: {
//             設(shè)置當(dāng)前約束值乘以多少诗祸,例如這個(gè)例子是redView的寬度是self.view寬度的0.2倍
            [self.blueView mas_makeConstraints:^(MASConstraintMaker *make) {
                make.center.equalTo(self.view);
                make.height.mas_equalTo(30);
                make.width.mas_equalTo(self.view).multipliedBy(0.5);
            }];
        }
            break;
            
        default:
            break;
    }
    
}

#pragma mark - touch Event
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    
    ViewController *viewVC = [[ViewController alloc]init];
    [self dismissViewControllerAnimated:viewVC completion:^{
        
    }];
}


#pragma mark - setter / getter

- (UIView *)yellowView {
    if (_yellowView == nil) {
        _yellowView = [[UIView alloc]init];
        _yellowView.backgroundColor = [UIColor yellowColor];
        [self.view addSubview:_yellowView];
    }
    return _yellowView;
}
- (UIView *)blueView {
    if (_blueView == nil) {
        _blueView = [[UIView alloc]init];
        _blueView.backgroundColor = [UIColor blueColor];
        [self.view addSubview:_blueView];
    }
    return _blueView;
}
- (UIView *)greenView {
    if (_greenView == nil) {
        _greenView = [[UIView alloc]init];
        _greenView.backgroundColor = [UIColor greenColor];
        [self.view addSubview:_greenView];
    }
    return _greenView;
}
- (UILabel *)textLabel {
    if (_textLabel == nil) {
        _textLabel = [UILabel new];
        _textLabel.font = [UIFont systemFontOfSize:14];
        _textLabel.textColor = [UIColor redColor];
        _textLabel.backgroundColor = [UIColor greenColor];
        _textLabel.numberOfLines = 0;
        [self.view addSubview:_textLabel];
    }
    return _textLabel;
}

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

@end

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末跑芳,一起剝皮案震驚了整個(gè)濱河市轴总,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌博个,老刑警劉巖怀樟,帶你破解...
    沈念sama閱讀 211,743評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異盆佣,居然都是意外死亡往堡,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)共耍,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)虑灰,“玉大人,你說(shuō)我怎么就攤上這事痹兜∧赂溃” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,285評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵字旭,是天一觀(guān)的道長(zhǎng)对湃。 經(jīng)常有香客問(wèn)我,道長(zhǎng)遗淳,這世上最難降的妖魔是什么拍柒? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,485評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮洲脂,結(jié)果婚禮上斤儿,老公的妹妹穿的比我還像新娘。我一直安慰自己恐锦,他們只是感情好往果,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,581評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著一铅,像睡著了一般陕贮。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上潘飘,一...
    開(kāi)封第一講書(shū)人閱讀 49,821評(píng)論 1 290
  • 那天肮之,我揣著相機(jī)與錄音,去河邊找鬼卜录。 笑死戈擒,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的艰毒。 我是一名探鬼主播筐高,決...
    沈念sama閱讀 38,960評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了柑土?” 一聲冷哼從身側(cè)響起蜀肘,我...
    開(kāi)封第一講書(shū)人閱讀 37,719評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎稽屏,沒(méi)想到半個(gè)月后扮宠,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,186評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡狐榔,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,516評(píng)論 2 327
  • 正文 我和宋清朗相戀三年坛增,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片荒叼。...
    茶點(diǎn)故事閱讀 38,650評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡轿偎,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出被廓,到底是詐尸還是另有隱情坏晦,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評(píng)論 4 330
  • 正文 年R本政府宣布嫁乘,位于F島的核電站昆婿,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏蜓斧。R本人自食惡果不足惜仓蛆,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,936評(píng)論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望挎春。 院中可真熱鬧看疙,春花似錦、人聲如沸直奋。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,757評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)脚线。三九已至搁胆,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間邮绿,已是汗流浹背渠旁。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,991評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留船逮,地道東北人顾腊。 一個(gè)月前我還...
    沈念sama閱讀 46,370評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像挖胃,于是被迫代替她去往敵國(guó)和親杂靶。 傳聞我的和親對(duì)象是個(gè)殘疾皇子承耿,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,527評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容