objective c - when click on the hyperlink it will going to browser ,so my reqirement is open in in_app ios -
textview having text , hyperlinks ,when click on hyperlink going browser ,so requirement open in in_app i.e web view
you can use delegate shouldinteractwithurl:
of uitextview
open in-app.
- (bool)textview:(uitextview *)textview shouldinteractwithurl:(nsurl *)url inrange:(nsrange)characterrange { // code open locally "in-app" return no; }
Comments
Post a Comment