zoukankan      html  css  js  c++  java
  • 第12月第1天 MASConstraintMaker crash

    1.

    crash

        [valueLabel mas_makeConstraints:^(PAKitMASConstraintMaker *make) {

            make.left.equalTo(finishedView.mas_right).with.offset(0);

            make.width.equalTo(@80);

            make.height.equalTo(@28);

            make.centerY.equalTo(self.contentView.mas_centerY).width.offset(0);

        }];

     

    修改为

        width改为with

        make.centerY.equalTo(self.contentView.mas_centerY).with.offset(0);

  • 相关阅读:
    02方法 课后作业1
    HDU 1518
    POJ 2406
    HDU 1953
    HDU 1272
    POJ -- 3842
    POJ -- 3233 求“等比矩阵”前n(n <=10^9)项和
    POJ ---3070 (矩阵乘法求Fibonacci 数列)
    POJ --- 3613 (K步最短路+矩阵快速幂+floyd)
    POJ --- 2918 求解数独
  • 原文地址:https://www.cnblogs.com/javastart/p/7463511.html
Copyright © 2011-2022 走看看