YJLAttributesLabel.h 585 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YJLAttributesLabel.h
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2024/1/5.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface YJLAttributesLabel : UILabel
  10. /**
  11. @param text 传入富文本类型的字符串
  12. @param actionText 要响应事件的字符串
  13. */
  14. - (void)setAttributesText: (NSMutableAttributedString *)text
  15. actionText: (NSMutableArray *)actionText
  16. actionRange:(NSMutableArray *)actionrange;
  17. /**
  18. 点击事件回调
  19. */
  20. @property (nonatomic , copy) void(^YJLAttributesBlock)(NSString *clicktext);
  21. @end
  22. NS_ASSUME_NONNULL_END