I am about to build an iPhone screen where I need to display formatted text, a link that will kick off a browser, and an email address link that will kick off the mail client.
Which widget do I use for that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I do the very thing you are looking to do in my app with a
UIWebView. I’m not sure what kind of rich text format you were planning on using, butUIWebViewtakes HTML. There are a couple delegates you’ll need to cover for the view to launch URLs in Safari Mobile (otherwise they’ll appear directly in yourUIWebView, which might not be what you want.) Email links should launch the iPhone’s Mail app.