gpt4 book ai didi

iOS7 UITextView设置NSLinkAttributeName属性但无法点击

转载 作者:可可西里 更新时间:2023-11-01 06:21:49 29 4
gpt4 key购买 nike

enter image description here

@interface ViewController ()<UITextViewDelegate>


- (void)viewDidLoad
{
[super viewDidLoad];
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"www.google.com"];
NSDictionary *linkDic = @{ NSLinkAttributeName : [NSURL URLWithString:@"http://www.google.com"] };
[str setAttributes:linkDic range:[[str string] rangeOfString:@"www.google.com"]];
_textView.attributedText = str;
}


- (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange
{
NSLog(@"=============%@",URL);
return YES;
}

有什么问题吗?

最佳答案

在 IB > Utilities > Attributes Inspector 中设置以下内容。值得注意的是,UITextView 不能可编辑并启用链接。

UITextView Settings

你也可以用代码做同样的事情:

_textView.editable = NO;
_textView.dataDetectorTypes = UIDataDetectorTypeLink;

关于iOS7 UITextView设置NSLinkAttributeName属性但无法点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21323338/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com