| 123456789101112131415161718 |
- //
- // LBDesignableOnePixelConstant.h
- // LoveBaby_Parents
- //
- // Created by zijing on 16/7/4.
- // Copyright © 2016年 onecloud.ltd. All rights reserved.
- // 这个约束类, 主要用于一像素view的实现(在xib中用)
- #import <UIKit/UIKit.h>
- IB_DESIGNABLE
- @interface LBDesignableOnePixelConstant : NSLayoutConstraint
- /** 一个像素常数 */
- @property (nonatomic, assign) IBInspectable NSInteger onePixelConstant;
- @end
|