Can't make URL clickable in UITextView

独自空忆成欢 提交于 2019-12-01 13:39:34

问题


I'm using Interface Builder to layout my app. I have a UITextView that contains some text, part of which is a URL that I'd like to make clickable (e.g. launches a browser). I've read up on how to do this and believe I'm doing it correctly, however while the URL appears blue/clickable, clicking it in the iPhone emulator doesn't work. Nothing happens.

My controller:

@interface FirstViewController : UIViewController <UISearchBarDelegate>
@property (nonatomic, retain) IBOutlet UITextView *review;
@end

In my implementation I @synthesize review; (and am able to manipulate the view's text, so don't think that's the issue).

In IB I have:

..then later when I go to set the text (and attempt to make URLs in the view clickable) I do:

self.review.text = content;
// My understanding is that this makes URLs clickable...
self.review.dataDetectorTypes = UIDataDetectorTypeLink;

...which displays something like:

...which really looks like it wants to work, however when clicking the URL nothing happens. What am I missing?

--UPDATE--

Tried adding self.review.editable = NO; in response to Dixit Patel's answer, but it didn't fix the issue:

self.review.text = content;
// My understanding is that this makes URLs clickable...
self.review.editable = NO; 
self.review.dataDetectorTypes = UIDataDetectorTypeLink;

回答1:


Check the "Selectable" and "Links" checkboxes in the textview Attributes Inspector:




回答2:


Try to use this Hope this help to you

Links are not clickable by default in a UITextView. But luckily they can be enabled with a few simple lines of code:

self.review.editable = NO;
self.review.selectable = YES;//required
self.review.dataDetectorTypes = UIDataDetectorTypeLink;

Unfortunately you cannot have an editable UITextView with clickable links. If you set editable to YES, then all links will be treated as regular text.

EDIT

Have u check properly it may be UITextview disable in your .xib file.




回答3:


The issue was that User Interaction Enabled wasn't checked at the bottom of the View section of IB's Attributes Inspector.



来源:https://stackoverflow.com/questions/14387024/cant-make-url-clickable-in-uitextview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!