12345678910111213141516171819 |
- //
- // NSLayoutConstraint+RQExtension.h
- // BuckDriverCoach
- //
- // Created by 张嵘 on 2018/12/21.
- // Copyright © 2018 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NSLayoutConstraint (RQExtension)
- //@property (nonatomic) IBInspectable BOOL widthScreen;
- @property (nonatomic) IBInspectable BOOL toTop;
- @property (nonatomic) IBInspectable BOOL toBottom;
- @end
- NS_ASSUME_NONNULL_END
|