| 1234567891011121314151617181920212223242526272829 | ////  YJLAttributesLabel.h//  Asteria////  Created by 王猛 on 2024/1/5.//#import <UIKit/UIKit.h>NS_ASSUME_NONNULL_BEGIN@interface YJLAttributesLabel : UILabel/**  @param text 传入富文本类型的字符串 @param actionText 要响应事件的字符串 */- (void)setAttributesText: (NSMutableAttributedString *)text               actionText: (NSMutableArray *)actionText              actionRange:(NSMutableArray *)actionrange;/** 点击事件回调 */@property (nonatomic , copy) void(^YJLAttributesBlock)(NSString *clicktext);@endNS_ASSUME_NONNULL_END
 |