// // UILabel+YBAttributeTextTapAction.h // // Created by LYB on 16/7/1. // Copyright © 2016年 LYB. All rights reserved. // #import @protocol YBAttributeTapActionDelegate @optional /** * YBAttributeTapActionDelegate * * @param string 点击的字符串 * @param range 点击的字符串range * @param index 点击的字符在数组中的index */ - (void)yb_tapAttributeInLabel:(UILabel *)label string:(NSString *)string range:(NSRange)range index:(NSInteger)index; @end @interface UILabel (YBAttributeTextTapAction) /** * 是否打开点击效果,默认是打开 */ @property (nonatomic, assign) BOOL enabledTapEffect; /** * 点击高亮色 默认是[UIColor lightGrayColor] 需打开enabledTapEffect才有效 */ @property (nonatomic, strong) UIColor * tapHighlightedColor; /** * 是否扩大点击范围,默认是打开 */ @property (nonatomic, assign) BOOL enlargeTapArea; /** * 给文本添加点击事件Block回调 * * @param strings 需要添加的字符串数组 * @param tapClick 点击事件回调 */ - (void)yb_addAttributeTapActionWithStrings:(NSArray *)strings tapClicked:(void (^) (UILabel * label, NSString *string, NSRange range, NSInteger index))tapClick; /** * 给文本添加点击事件delegate回调 * * @param strings 需要添加的字符串数组 * @param delegate delegate */ - (void)yb_addAttributeTapActionWithStrings:(NSArray *)strings delegate:(id )delegate; /** * 根据range给文本添加点击事件Block回调 * * @param ranges 需要添加的Range字符串数组 * @param tapClick 点击事件回调 */ - (void)yb_addAttributeTapActionWithRanges:(NSArray *)ranges tapClicked:(void (^) (UILabel * label, NSString *string, NSRange range, NSInteger index))tapClick; /** * 根据range给文本添加点击事件delegate回调 * * @param ranges 需要添加的Range字符串数组 * @param delegate delegate */ - (void)yb_addAttributeTapActionWithRanges:(NSArray *)ranges delegate:(id )delegate; /** * 删除label上的点击事件 */ - (void)yb_removeAttributeTapActions; @end