UILabel+Create.h 338 B

12345678910111213141516171819
  1. //
  2. // UILabel+Create.h
  3. // HuoChat
  4. //
  5. // Created by macWangDC on 2022/9/28.
  6. // Copyright © 2022 Huobi. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface UILabel (Create)
  11. + (UILabel *)labelCreateWithText:(NSString *)text font:(UIFont *)font textColor:(UIColor *)color;
  12. @end
  13. NS_ASSUME_NONNULL_END