单击UITextView中的链接属性

时间:2016-01-21 09:14:26

标签: ios uitextview ios9 nsurl nsattributedstring

我将UITextView定义为:

UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, 100, 40);

然后我有一个如下所示的attributionText:

textView.attributedText = @"Testing #tag";

当它出现在屏幕上时,属性文本只占文本视图宽度的一半(左右)。但由于我将#tag设为可点击链接并使用了下面的功能,因此#tag之后的所有空格都可以点击。

- (BOOL) textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange

如何阻止空白区域被点击?

0 个答案:

没有答案