I want to create an icon to enter in my website. ( when the user click on it ).
sample: i have in my website "mobile version". i want to put icon in ( iphone, ipad, ipod, .. ) to enter in the website.
Thank you
I want to create an icon to enter in my website. ( when the user click on it ).
sample: i have in my website "mobile version". i want to put icon in ( iphone, ipad, ipod, .. ) to enter in the website.
Thank you
From the comment in the question, the problem is how to open an URL.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://www.example.com"]];
This will open http://www.example.com
in Safari. So you need to put this code in your button handler and replace the URL with the URL of mobile version of your site.