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

  • 相关阅读:
    JS实现简单的运行代码 & 侧边广告
    JS封装Cookie
    [PHP]array_map与array_column之间的关系
    [PHP]json_encode增加options参数后支持中文
    [CI]CodeIgniter特性 & 结构
    [PHP]PHP缓存机制之Output Control
    [PHP]将回调函数作用到给定数组的单元上
    [Apache]网站页面静态化与Apache调优(图)
    [PHP]PHP自定义遍历目录下所有文件的方法
    [PC]PHPCMS配置文件的读取
  • 原文地址:https://www.cnblogs.com/javastart/p/7463511.html
Copyright © 2011-2022 走看看