Reputation: 81
I'm using C++ Builder for Application programming. I want to know how to open an URL on an Ios Device in Safari ( simply on an button click ) . Would be nice if anyone has an answer to that.
Upvotes: 0
Views: 315
Reputation: 429
You could do
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://www.google.com"]];
For further details Check UIApplication Class Reference
Upvotes: 2