UITextView
我开发了一个应用程序,我需要使用必须动态设置高度并且必须识别链接的内容来显示内容。
我使用了上面的代码:
self.textView.text = [NSString stringWithFormat:@"%@ \n %@", self.offersObjects.body, self.offersObjects.url];
self.textView.dataDetectorTypes = UIDataDetectorTypeLink;
if (([[[UIDevice currentDevice] systemVersion] integerValue] < 7)){
CGRect frame = self.textView.frame;
frame.size.height = self.textView.contentSize.height;contentSize.height;
self.textView.frame = frame;
}else{
[self.textView sizeToFit];
[self.textView layoutIfNeeded];
}
我的问题是它无法识别链接。