| 12345678910111213141516171819 |
- //
- // CustomEdgeInsetLabel.h
- // BuguLive
- //
- // Created by 范东 on 2019/1/14.
- // Copyright © 2019 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CustomEdgeInsetLabel : UILabel
- @property (nonatomic, assign) UIEdgeInsets textInsets; // 控制字体与控件边界的间隙
- @end
- NS_ASSUME_NONNULL_END
|