字符富文本

#import <UIKit/UIKit.h>


@protocol YBAttributeTapActionDelegate <NSObject>

@optional

/**

 *  YBAttributeTapActionDelegate

 *

 *  @param string  点击的字符串

 *  @param range   点击的字符串range

 *  @param index 点击的字符在数组中的index

 */

- (void)yb_attributeTapReturnString:(NSString *)string

                              range:(NSRange)range

                              index:(NSInteger)index;

@end


@interface YBAttributeModel : NSObject


@property (nonatomic, copy) NSString *str;


@property (nonatomic, assign) NSRange range;


@end






@interface UILabel (YBAttributeTextTapAction)


/**

 *  给文本添加点击事件Block回调

 *

 *  @param strings  需要添加的字符串数组

 *  @param tapClick 点击事件回调

 */

- (void)yb_addAttributeTapActionWithStrings:(NSArray <NSString *> *)strings

                                 tapClicked:(void (^) (NSString *string , NSRange range , NSInteger index))tapClick;


/**

 *  给文本添加点击事件delegate回调

 *

 *  @param strings  需要添加的字符串数组

 *  @param delegate delegate

 */

- (void)yb_addAttributeTapActionWithStrings:(NSArray <NSString *> *)strings

                                   delegate:(id <YBAttributeTapActionDelegate> )delegate;


@end

#import "UILabel+YBAttributeTextTapAction.h"

#import <objc/runtime.h>

#import <CoreText/CoreText.h>

#import <Foundation/Foundation.h>


@implementation YBAttributeModel


@end


@implementation UILabel (YBAttributeTextTapAction)


#pragma mark - AssociatedObjects


- (NSMutableArray *)attributeStrings

{

    return objc_getAssociatedObject(self, _cmd);

}


- (void)setAttributeStrings:(NSMutableArray *)attributeStrings

{

    objc_setAssociatedObject(self, @selector(attributeStrings), attributeStrings, OBJC_ASSOCIATION_RETAIN_NONATOMIC);

}


- (void (^)(NSString *, NSRange, NSInteger))tapBlock

{

    return objc_getAssociatedObject(self, _cmd);

}


- (void)setTapBlock:(void (^)(NSString *, NSRange, NSInteger))tapBlock

{

    objc_setAssociatedObject(self, @selector(tapBlock), tapBlock, OBJC_ASSOCIATION_COPY_NONATOMIC);

}


- (id<YBAttributeTapActionDelegate>)delegate

{

    return objc_getAssociatedObject(self, _cmd);

}


- (void)setDelegate:(id<YBAttributeTapActionDelegate>)delegate

{

    objc_setAssociatedObject(self, @selector(delegate), delegate, OBJC_ASSOCIATION_RETAIN_NONATOMIC);

}


#pragma mark - mainFunction

- (void)yb_addAttributeTapActionWithStrings:(NSArray <NSString *> *)strings tapClicked:(void (^) (NSString *string , NSRange range , NSInteger index))tapClick

{

    [self yb_getRangesWithStrings:strings];

    

    if (self.tapBlock != tapClick) {

        self.tapBlock = tapClick;

    }

}


- (void)yb_addAttributeTapActionWithStrings:(NSArray <NSString *> *)strings

                                   delegate:(id <YBAttributeTapActionDelegate> )delegate

{

    [self yb_getRangesWithStrings:strings];

    

    if (self.delegate != delegate) {

        self.delegate = delegate;

    }

}


#pragma mark - touchAction

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event

{

    UITouch *touch = [touches anyObject];

    

    CGPoint point = [touch locationInView:self];

    

    __weak typeof(self) weakSelf = self;

    

    [self yb_getTapFrameWithTouchPoint:point result:^(NSString *string, NSRange range, NSInteger index) {

        

        if (weakSelf.tapBlock) {

            weakSelf.tapBlock (string , range , index);

        }

        

        if (weakSelf.delegate && [weakSelf.delegate respondsToSelector:@selector(yb_attributeTapReturnString:range:index:)]) {

            [weakSelf.delegate yb_attributeTapReturnString:string range:range index:index];

        }

        

    }];

}


- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {

    if ([self yb_getTapFrameWithTouchPoint:point result:nil]) {

        return self;

    }

    return nil;

}


#pragma mark - getTapFrame

- (BOOL)yb_getTapFrameWithTouchPoint:(CGPoint)point result:(void (^) (NSString *string , NSRange range , NSInteger index))resultBlock

{

    CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)self.attributedText);

    

    CGMutablePathRef Path = CGPathCreateMutable();

    

    CGPathAddRect(Path, NULL, self.bounds);

    

    CTFrameRef frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), Path, NULL);

    

    CFArrayRef lines = CTFrameGetLines(frame);

    

    if (!lines) {

        return NO;

    }

    

    CFIndex count = CFArrayGetCount(lines);

    

    CGPoint origins[count];

    

    CTFrameGetLineOrigins(frame, CFRangeMake(0, 0), origins);

    

    CGAffineTransform transform = [self yb_transformForCoreText];

    

    CGFloat verticalOffset = 0;

    

    for (CFIndex i = 0; i < count; i++) {

        CGPoint linePoint = origins[i];

        

        CTLineRef line = CFArrayGetValueAtIndex(lines, i);

        

        CGRect flippedRect = [self yb_getLineBounds:line point:linePoint];

        

        CGRect rect = CGRectApplyAffineTransform(flippedRect, transform);

        

        rect = CGRectInset(rect, 0, 0);

        

        rect = CGRectOffset(rect, 0, verticalOffset);

        

        if (CGRectContainsPoint(rect, point)) {

            

            CGPoint relativePoint = CGPointMake(point.x - CGRectGetMinX(rect), point.y - CGRectGetMinY(rect));

            

            CFIndex index = CTLineGetStringIndexForPosition(line, relativePoint);

            

            CGFloat offset;

            

            CTLineGetOffsetForStringIndex(line, index, &offset);

            

            if (offset > relativePoint.x) {

                index = index - 1;

            }

            

            NSInteger link_count = self.attributeStrings.count;

            

            for (int j = 0; j < link_count; j++) {

                

                YBAttributeModel *model = self.attributeStrings[j];

                

                NSRange link_range = model.range;

                if (NSLocationInRange(index, link_range)) {

                    if (resultBlock) {

                        resultBlock (model.str , model.range , (NSInteger)j);

                    }

                    return YES;

                }

            }

        }

    }

    return NO;

}


- (CGAffineTransform)yb_transformForCoreText

{

    return CGAffineTransformScale(CGAffineTransformMakeTranslation(0, self.bounds.size.height), 1.f, -1.f);

}


- (CGRect)yb_getLineBounds:(CTLineRef)line point:(CGPoint)point

{

    CGFloat ascent = 0.0f;

    CGFloat descent = 0.0f;

    CGFloat leading = 0.0f;

    CGFloat width = (CGFloat)CTLineGetTypographicBounds(line, &ascent, &descent, &leading);

    CGFloat height = ascent + descent;

    

    return CGRectMake(point.x, point.y - descent, width, height);

}


#pragma mark - getRange

- (void)yb_getRangesWithStrings:(NSArray <NSString *>  *)strings

{

    __block  NSString *totalStr = self.attributedText.string;

    

    self.attributeStrings = [NSMutableArray array];

    

    __weak typeof(self) weakSelf = self;

    

    [strings enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {

        

        NSRange range = [totalStr rangeOfString:obj];

        

        if (range.length != 0) {

            YBAttributeModel *model = [YBAttributeModel new];

            model.range = range;

            model.str = obj;

            [weakSelf.attributeStrings addObject:model];

            

            totalStr = [totalStr stringByReplacingCharactersInRange:range withString:[weakSelf yb_getStringWithRange:range]];

        }

    }];

}


- (NSString *)yb_getStringWithRange:(NSRange)range

{

    NSMutableString *string = [NSMutableString string];

    for (int i = 0; i < range.length ; i++) {

        [string appendString:@" "];

    }

    return string;

}


@end



用法

- (void)viewDidLoad {

    [super viewDidLoad];

    

    //需要点击的字符相同

    NSString *label_text1 = @"我是个抽奖Label 点我有奖,点我没奖哦";

    NSMutableAttributedString *attributedString1 = [[NSMutableAttributedString alloc]initWithString:label_text1];

    [attributedString1 addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:20] range:NSMakeRange(0, label_text1.length)];

    [attributedString1 addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(12, 2)];

    [attributedString1 addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(17, 2)];

    

    UILabel *ybLabel1 = [[UILabel alloc] initWithFrame:CGRectMake(10, 100, self.view.bounds.size.width - 20, 60)];

    ybLabel1.backgroundColor = [UIColor yellowColor];

    ybLabel1.numberOfLines = 2;

    ybLabel1.attributedText = attributedString1;

    [self.view addSubview:ybLabel1];

    

    [ybLabel1 yb_addAttributeTapActionWithStrings:@[@"点我",@"点我"] delegate:self];

    

    

    //需要点击的字符不同

    NSString *label_text2 = @"您好!您是小明吗?你中奖了,领取地址“www.yb.com”,领奖码“9527”";

    NSMutableAttributedString *attributedString2 = [[NSMutableAttributedString alloc]initWithString:label_text2];

    [attributedString2 addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:20] range:NSMakeRange(0, label_text2.length)];

    [attributedString2 addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(19, 10)];

    [attributedString2 addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(35, 4)];

    

    UILabel *ybLabel2 = [[UILabel alloc] initWithFrame:CGRectMake(10, 200, self.view.bounds.size.width - 20, 60)];

    ybLabel2.backgroundColor = [UIColor lightGrayColor];

    ybLabel2.numberOfLines = 2;

    ybLabel2.attributedText = attributedString2;

    [self.view addSubview:ybLabel2];

    

    [ybLabel2 yb_addAttributeTapActionWithStrings:@[@"www.yb.com",@"9527"] tapClicked:^(NSString *string, NSRange range, NSInteger index) {

        NSString *message = [NSString stringWithFormat:@"点击了“%@”字符\nrange: %@\nindex: %ld",string,NSStringFromRange(range),index];

        YBAlertShow(message, @"取消");

    }];

}


//delegate

- (void)yb_attributeTapReturnString:(NSString *)string range:(NSRange)range index:(NSInteger)index

{

    NSString *message = [NSString stringWithFormat:@"点击了“%@”字符\nrange: %@\nindex: %ld",string,NSStringFromRange(range),index];

    YBAlertShow(message, @"取消");

}







  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值