MTBaseLabel.h 567 B

123456789101112131415161718192021
  1. //
  2. // MTBaseLabel.h
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MTBaseLabel : UILabel
  10. //UILable
  11. +(MTBaseLabel *)labelWithFrame:(CGRect)rect backGroundColor:(UIColor *)color1 text:(NSString *)text textColor:(UIColor *)color2 font:(UIFont *)floatFont;
  12. +(MTBaseLabel *)labelWithTextColor:(UIColor *)color font:(UIFont *)floatFont;
  13. +(MTBaseLabel *)labelWithText:(NSString *)text andColor:(UIColor *)color font:(UIFont *)floatFont;
  14. @end
  15. NS_ASSUME_NONNULL_END