点击UITextView中的NSLinkAttributeName链接无法在iOS 9中运行

时间:2017-08-16 11:10:46

标签: ios objective-c uitextview ios9 nsattributedstring

我有UITextView个带有属性的文本,其设置方式如下:

NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:@"This is a message.\nClick here for more info"];
textView.linkTextAttributes = @{NSUnderlineStyleAttributeName : @(NSUnderlineStyleSingle)};
NSRange linkRange = [attributedString.string rangeOfString:@"Click here for more info"];
[attributedString addAttribute:NSLinkAttributeName value:@"" range:linkRange];
textView.attributedText = attributedString;
UITapGestureRecognizer *tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(infoTapped:)];
[textView addGestureRecognizer:tapRecognizer

然后我抓住这样的水龙头:

- (void)infoTapped:(UITapGestureRecognizer *)tapGesture {
    if (tapGesture.state != UIGestureRecognizerStateEnded) {
        return;
    }

    UITextView *textView = (UITextView *)tapGesture.view;
    CGPoint tapLocation = [tapGesture locationInView:textView];
    UITextPosition *textPosition = [textView closestPositionToPoint:tapLocation];
    NSDictionary *attributes = [textView textStylingAtPosition:textPosition inDirection:UITextStorageDirectionForward];
    NSString *link = attributes[NSLinkAttributeName];

    if (link) {
        // Do stuff
    }
}

在iOS 10中,此工作正常,我能够检测NSLinkAttributeName属性。 但是,在iOS 9中,对[textView closestPositionToPoint:tapLocation]的调用会返回nil,而我无法执行任何操作。

顺便说一下。我的textview将editableselectable设置为NO。我知道有人说selctable需要设置为YES,但我不确定它是否属实。首先,它在iOS 10中没有可选择的情况下工作正常。其次,如果我将其设置为可选择它确实有效,但只有一点。我确实得到了iOS 9中的水龙头,但它只能不正常地工作(9和10)。有时它会记录水龙头,有时它不会。基本上,当我看到链接突出显示时,如单击浏览器中的链接,它不会注册。此外,现在可以选择我不想要的文本视图中的文本。

1 个答案:

答案 0 :(得分:3)

为什么要使用点击手势选择链接? UITextView具有完美的链接识别功能。我无法回答为什么你的解决方案在iOS 9上无法正常工作,但我可以建议你以另一种方式处理链接。这也适用于iOS 9。

    NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"This is a message.\nClick here for more info" attributes:nil];
NSRange range = [str.string rangeOfString:@"Click here for more info"];
// add a value to link attribute, you'll use it to determine what link is tapped
[str addAttribute:NSLinkAttributeName value:@"ShowInfoLink" range:range];
self.textView.linkTextAttributes = @{NSUnderlineStyleAttributeName : @(NSUnderlineStyleSingle)};
self.textView.attributedText = str;
// set textView's delegate
self.textView.delegate = self;

然后实现UITextViewDelegate的链接相关方法:

- (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange interaction:(UITextItemInteraction)interaction
{
    if ([URL.absoluteString isEqualToString:@"ShowInfoLink"]) {
        // Do something
    }
    return NO;
}

要使其正常工作,您必须设置selectable = YES并检查故事板中的链接标记以便能够检测链接。