NSMutableAttributedString+RQExtension.h 445 B

1234567891011121314151617
  1. //
  2. // NSMutableAttributedString+RQExtension.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2021/9/30.
  6. // Copyright © 2021 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NSMutableAttributedString (RQExtension)
  11. + (NSMutableAttributedString *)setupAttributeString:(NSString *)text rangeText:(NSString *)rangeText textColor:(UIColor *)color textFont:(UIFont *)textFont;
  12. @end
  13. NS_ASSUME_NONNULL_END