1234567891011121314151617 |
- //
- // NSMutableAttributedString+RQExtension.h
- // jiaPei
- //
- // Created by 张嵘 on 2021/9/30.
- // Copyright © 2021 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NSMutableAttributedString (RQExtension)
- + (NSMutableAttributedString *)setupAttributeString:(NSString *)text rangeText:(NSString *)rangeText textColor:(UIColor *)color textFont:(UIFont *)textFont;
- @end
- NS_ASSUME_NONNULL_END
|