我有一个UITextView,其文本为www.foo.com
当用户点击它时,我想访问www.foo.com/bar/cow/index.html而不是UITextView的text属性中显示的内容
最简单的方法是什么?
答案 0 :(得分:0)
让您的班级符合UITextViewDelegate
协议。然后以类似的方式实现- (void)textViewDidBeginEditing:(UITextView *)textView
:
- (void)textViewDidBeginEditing:(UITextView *)textView{
NSString *url = [NSString stringWithFormat:@"%@<additionalTextHere>", textView.text];
//do whetever with url
}