12345678910111213141516171819202122 |
- //
- // UGLabel.h
- // VideoHeadline
- //
- // Created by admin on 2020/8/17.
- // Copyright © 2020 IgCoding. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UGLabel : UILabel
- /**
- 设置lable的内间距
- */
- @property (assign, nonatomic) UIEdgeInsets edgeInsets;
- @end
- NS_ASSUME_NONNULL_END
|