How can I do the same thing but open an address in Google Maps? Ideally I'd like the button to pull info from a SQlite Database.
For instance, using this app as an example:
iPhone SDK Tutorial: Reading data from a SQLite Database | dBlog.com.au
I'd like to have a table like this one and when you clicked on a "animal" name it would load the Google Map instead of going to the "animal's" info page.
Thoughts? Suggestions? code snippets?
Quote:
Originally Posted by kieran12
I have found the answer myself with some guessing and looking further at the documentation. The code I was looking or was:
Code:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://www.google.co.uk"]];
where Google is replaced with your own URL.
|