美文网首页iOS学习开发iOS开发记录iOS开发
Masonry 方法对应 NSLayoutAttribute

Masonry 方法对应 NSLayoutAttribute

作者: 鬼才冯三郎 | 来源:发表于2019-08-28 17:17 被阅读0次

NSLayoutAttribute 属性参数解释

typedef NS_ENUM(NSInteger, NSLayoutRelation) {

    NSLayoutRelationLessThanOrEqual = -1,          //小于等于

    NSLayoutRelationEqual = 0,                     //等于

    NSLayoutRelationGreaterThanOrEqual = 1,        //大于等于

};

typedef NS_ENUM(NSInteger, NSLayoutAttribute) {

    NSLayoutAttributeLeft = 1,                     //左侧

    NSLayoutAttributeRight,                        //右侧

    NSLayoutAttributeTop,                          //上方

    NSLayoutAttributeBottom,                       //下方

    NSLayoutAttributeLeading,                      //首部

    NSLayoutAttributeTrailing,                     //尾部

    NSLayoutAttributeWidth,                        //宽度

    NSLayoutAttributeHeight,                       //高度

    NSLayoutAttributeCenterX,                      //X轴中心

    NSLayoutAttributeCenterY,                      //Y轴中心

    NSLayoutAttributeBaseline,                     //文本底标线

    NSLayoutAttributeNotAnAttribute = 0            //没有属性

};

相关文章

  • Masonry 方法对应 NSLayoutAttribute

    NSLayoutAttribute 属性参数解释 typedefNS_ENUM(NSInteger, NSLayo...

  • AVPlayerLayer

    留白问题 调了一整天界面,xib masonry autolayout,NSLayoutAttribute都试过了...

  • 代码自动布局

    方法一: 例子: NSLayoutAttribute枚举说明: NSLayoutRelation 枚举说明 注意:...

  • iOS Masonry 快速搭建等间距UI

    Masonry 对应的方法和参数说明: distribute with fixed spacing* @param...

  • Masonry

    Masonry使用方法Masonry的使用Masonry的github地址 本篇文章 Masonry的基本使用方法...

  • 自动布局 - Masonry的使用(一)

    1.Masonry支持的属性: 支持属性对应的NSLayoutAttrubute(枚举值) 从上往下依次和属性对应...

  • Masonry使用方法

    Masonry的使用 Masonry的github地址 Masonry的基本使用方法 给控件添加约束使用Mason...

  • Masonry

    Masonry Masonry常用的属性和方法 例: UILabel* lable = [[UILabel all...

  • masonry使用记录

    masonry git地址:https://github.com/SnapKit/Masonry 一、常用使用方法...

  • 0707-Masonry

    Masonry masonry中去处mas的宏 masonry的使用方法 约束添加基本方式 约束的类型: 尺寸:w...

网友评论

    本文标题:Masonry 方法对应 NSLayoutAttribute

    本文链接:https://www.haomeiwen.com/subject/wzymectx.html