Im trying to open Maps from my App from a table view cell, I know I need this code in my AppDelegate.m file:
UIApplication *app = [UIApplication sharedApplication];
[app openURL:[NSURL URLWithString:@"https://maps.google.com.au/maps?q=Our+Lady+Queen+of+Peace+Catholic+Church+Greystanes"
I would like the saddr to be the user's and direct to the location address as above.
How do I link a table view cell to that code ?