Is there anyway to open the twitter app from an html link on an iPhone? Kind of how when you click a youtube link it goes to the youtube app.
thanks
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.
You’d use
twitter://as the URL and put it in an action for a button or something like so:If you meant html on a website you’d use
<a href="twitter://">tap me to go to twitter</a>for the link.URL Schemes are shown here and you can grab some more handy information about them too.
I’d probably recommend @Arab_Geek’s solution though as it isn’t that much of a trouble and it’s giving back control to the user.