iOS富文本Label實(shí)現(xiàn)點(diǎn)擊事件蜈膨,類似Word在橫線上輸入編輯

.h

import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface GHAttributesLabel : UILabel
typedef void(^GHAttributesBlock)(NSRange poinRange);
/**

@param text 傳入富文本類型的字符串
@param actionText 要響應(yīng)事件的字符串
*/

  • (void)setAttributesText: (NSMutableAttributedString *)text
    actionText: (NSString *)actionText;

/**
點(diǎn)擊事件回調(diào)
*/
@property (nonatomic , copy) GHAttributesBlock actionBlock;

.m
//
// GHAttributesLabel.m
// GHAttributesLabelDemo
//
// Created by zhaozhiwei on 2019/1/20.
// Copyright ? 2019年 GHome. All rights reserved.
//

import "GHAttributesLabel.h"

@interface GHTextView : UITextView

@end
@implementation GHTextView

  • (BOOL)canPerformAction:(SEL)action withSender:(id)sender
    {
    // 返回NO為禁用叉寂,YES為開啟
    // 粘貼
    if (action == @selector(paste:)) return NO;
    // 剪切
    if (action == @selector(cut:)) return NO;
    // 復(fù)制
    if (action == @selector(copy:)) return NO;
    // 選擇
    if (action == @selector(select:)) return NO;
    // 選中全部
    if (action == @selector(selectAll:)) return NO;
    // 刪除
    if (action == @selector(delete:)) return NO;
    // 分享
    if (action == @selector(share)) return NO;
    return [super canPerformAction:action withSender:sender];
    }

  • (BOOL)canBecomeFirstResponder {
    return NO;
    }

@end

@interface GHAttributesLabel()<UITextViewDelegate>

@property (nonatomic , strong) GHTextView *textView ;

@property (nonatomic , copy) NSString *actionText ;

/** <#注釋#>*/
@property (nonatomic, assign) NSRange range;

@end
@implementation GHAttributesLabel

  • (void)setAttributesText: (NSMutableAttributedString *)text actionText: (NSString *)actionText{
    self.textView.attributedText = text;
    self.actionText = actionText;
    // self.range = actionRange;
    }
  • (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange interaction:(UITextItemInteraction)interaction {
    // if ([textView.text containsString:self.actionText]) {
    if (self.actionBlock) {
    self.actionBlock(characterRange);
    }
    return NO;
    // }

// return YES;
}

  • (instancetype)init {
    if (self == [super init]) {
    [self setupUI];
    [self configuration];
    }
    return self;
    }

  • (instancetype)initWithFrame:(CGRect)frame {
    if (self == [super initWithFrame:frame]) {
    [self setupUI];
    [self configuration];
    }
    return self;
    }

  • (void)configuration {
    self.userInteractionEnabled = YES;
    }

  • (void)setupUI {
    [self addSubview:self.textView];
    }

  • (void)layoutSubviews {
    self.textView.frame = self.bounds;
    }

  • (GHTextView *)textView {
    if (_textView == nil) {
    _textView = [[GHTextView alloc]init];
    _textView.backgroundColor = self.backgroundColor;
    _textView.textColor = self.textColor;
    self.textColor = [UIColor clearColor];
    _textView.font = self.font;
    _textView.scrollEnabled = NO;
    _textView.text = self.text;
    _textView.delegate = self;
    _textView.editable = NO;
    _textView.textAlignment = self.textAlignment;
    _textView.linkTextAttributes = @{NSForegroundColorAttributeName:[UIColor redColor]};
    }
    return _textView;
    }

@end

使用
-(void)test{
GHAttributesLabel *attributesLabel = [[GHAttributesLabel alloc]initWithFrame:CGRectMake(10, 200, [UIScreen mainScreen].bounds.size.width - 20, 250)];

NSString *temp = @"注:本工具測試結(jié)果為一周內(nèi)平均每天鹽的攝入量為____毫升刹泄;問題中涉及的食物均以一人份為準(zhǔn)余寥;本軟件更適用于成人;建議您及您的家人使用低鈉鹽____本軟件更適用于成人";

// NSMutableAttributedString *attrStr = [[NSMutableAttributedString alloc] initWithString:temp];

NSString *actionStr = @"____";

NSMutableAttributedString *attrStr =  [temp keyWords:actionStr withKeyWordsColor:[UIColor redColor]];

// NSRange range = [temp rangeOfString:actionStr];
// NSLog(@"range%@",NSStringFromRange(range));
NSArray *actionArr = [self rangeOfSubString:actionStr inString:temp];
NSLog(@"===:%@",[self rangeOfSubString:actionStr inString:temp]);
for (int i = 0; i < actionArr.count; i++) {
NSValue *value = actionArr[i];
NSRange actionRange = [value rangeValue];
[attrStr addAttribute:NSLinkAttributeName
value:actionStr
range: actionRange];
}

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

__block GHAttributesLabel *weakLabel = attributesLabel;
NSMutableDictionary *titleDict = [NSMutableDictionary dictionary];

attributesLabel.actionBlock = ^(NSRange poinRange) {
    NSLog(@"poinRange%@",NSStringFromRange(poinRange));
    __block NSString *titleStr;
  NSString *properTitle = [titleDict objectForKey:[NSString stringWithFormat:@"%lu",(unsigned long)poinRange.location]];
    
    TextInputViewController *inputVC = [self inputVCWithProperty:properTitle NavName:@"請(qǐng)輸入"];
    inputVC.maxCount = 200;
    inputVC.GetText = ^(NSString *title){
        titleStr = title.length ? title : @"____";
        [titleDict setValue:titleStr forKey:[NSString stringWithFormat:@"%lu",(unsigned long)poinRange.location]];
        
        NSRange contentRange = {poinRange.location,[title length]};
        [attrStr replaceCharactersInRange:poinRange withString:title];
        
        [attrStr addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:contentRange];
            
        weakLabel.attributedText = attrStr;
        [weakLabel setAttributesText:attrStr actionText:actionStr];

    };
};
[attributesLabel setAttributesText:attrStr actionText:actionStr];

[self.view addSubview:attributesLabel];

}

  • (NSArray)rangeOfSubString:(NSString)subStr inString:(NSString*)string {
    NSMutableArray *rangeArray = [NSMutableArray array];
    NSString *string1 = [string stringByAppendingString:subStr];
    NSString *temp;
    for(int i =0; i < string.length; i ++) {
    temp = [string1 substringWithRange:NSMakeRange(i, subStr.length)];
    if ([temp isEqualToString:subStr]) {
    NSRange range = {i,subStr.length};
    [rangeArray addObject: [NSValue valueWithRange:range]];
    }

}
return rangeArray;
}

-(NSMutableAttributedString *)keyWords:(NSString *)keyWords withKeyWordsColor:(UIColor *)color
{

NSMutableAttributedString *mutableAttributedStr = [[NSMutableAttributedString alloc] initWithString:self];
if (color == nil) {
    color = [UIColor colorWithHexString:@"52c683"];
}

if (keyWords.length<=0) {
     return mutableAttributedStr;
}

for (NSInteger j=0; j<=keyWords.length-1; j++) {
    
    NSRange searchRange = NSMakeRange(0, [self length]);
    NSRange range;
    NSString *singleStr = [keyWords substringWithRange:NSMakeRange(j, 1)];
    while
        ((range = [self rangeOfString:singleStr options:0 range:searchRange]).location != NSNotFound) {
            //改變多次搜索時(shí)searchRange的位置
            searchRange = NSMakeRange(NSMaxRange(range), [self length] - NSMaxRange(range));
            //設(shè)置富文本
            [mutableAttributedStr addAttribute:NSForegroundColorAttributeName value:color range:range];
            
        }
}

return mutableAttributedStr;

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末帝蒿,一起剝皮案震驚了整個(gè)濱河市荐糜,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌葛超,老刑警劉巖暴氏,帶你破解...
    沈念sama閱讀 212,029評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異绣张,居然都是意外死亡答渔,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,395評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門侥涵,熙熙樓的掌柜王于貴愁眉苦臉地迎上來沼撕,“玉大人,你說我怎么就攤上這事芜飘∥癫颍” “怎么了?”我有些...
    開封第一講書人閱讀 157,570評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵燃箭,是天一觀的道長冲呢。 經(jīng)常有香客問我,道長招狸,這世上最難降的妖魔是什么敬拓? 我笑而不...
    開封第一講書人閱讀 56,535評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮裙戏,結(jié)果婚禮上乘凸,老公的妹妹穿的比我還像新娘。我一直安慰自己累榜,他們只是感情好营勤,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,650評(píng)論 6 386
  • 文/花漫 我一把揭開白布灵嫌。 她就那樣靜靜地躺著,像睡著了一般葛作。 火紅的嫁衣襯著肌膚如雪寿羞。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,850評(píng)論 1 290
  • 那天赂蠢,我揣著相機(jī)與錄音绪穆,去河邊找鬼。 笑死虱岂,一個(gè)胖子當(dāng)著我的面吹牛玖院,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播第岖,決...
    沈念sama閱讀 39,006評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼难菌,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了蔑滓?” 一聲冷哼從身側(cè)響起郊酒,我...
    開封第一講書人閱讀 37,747評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎键袱,沒想到半個(gè)月后猎塞,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,207評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡杠纵,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,536評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了钩骇。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片比藻。...
    茶點(diǎn)故事閱讀 38,683評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖倘屹,靈堂內(nèi)的尸體忽然破棺而出银亲,到底是詐尸還是另有隱情,我是刑警寧澤纽匙,帶...
    沈念sama閱讀 34,342評(píng)論 4 330
  • 正文 年R本政府宣布务蝠,位于F島的核電站,受9級(jí)特大地震影響烛缔,放射性物質(zhì)發(fā)生泄漏馏段。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,964評(píng)論 3 315
  • 文/蒙蒙 一践瓷、第九天 我趴在偏房一處隱蔽的房頂上張望院喜。 院中可真熱鬧,春花似錦晕翠、人聲如沸喷舀。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,772評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽硫麻。三九已至爸邢,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間拿愧,已是汗流浹背杠河。 一陣腳步聲響...
    開封第一講書人閱讀 32,004評(píng)論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留赶掖,地道東北人感猛。 一個(gè)月前我還...
    沈念sama閱讀 46,401評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像奢赂,于是被迫代替她去往敵國和親陪白。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,566評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容