CustomEdgeInsetLabel.h 351 B

12345678910111213141516171819
  1. //
  2. // CustomEdgeInsetLabel.h
  3. // BuguLive
  4. //
  5. // Created by 范东 on 2019/1/14.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CustomEdgeInsetLabel : UILabel
  11. @property (nonatomic, assign) UIEdgeInsets textInsets; // 控制字体与控件边界的间隙
  12. @end
  13. NS_ASSUME_NONNULL_END