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);

  • 相关阅读:
    修改 Mac 默认 PHP 运行环境,给 MAMP 配置全局 Composer
    修改 Mac 默认 PHP 运行环境,给 MAMP 配置全局 Composer
    Intellij Idea/Webstorm/Phpstorm 的高效快捷键
    Intellij Idea/Webstorm/Phpstorm 的高效快捷键
    管理工具推荐
    mongo find
    redis 工具
    Redis Quick Start [熟练版]
    Redis cluster
    redis cluster 使用中出现的问题
  • 原文地址:https://www.cnblogs.com/javastart/p/7463511.html
Copyright © 2011-2022 走看看