i want to display the maps in iphones map application. so, when i tap on map button it should navigate to iphone app. i have the code that works fine in other than ios 6 . but i want it in ios 6.thanks in advance
Asked
Active
Viewed 608 times
1 Answers
2
Apple documents its maps URL scheme here. You must replace maps.google.com
with maps.apple.com.

KingofBliss
- 15,055
- 6
- 50
- 72
-
Should consider old iOS. You cannot use maps.apple.com on iOS 5 and earlier. Try i([[UIDevice currentDevice] systemVersion] floatValue] >=6) – Xiaochen Du Jan 11 '13 at 05:48
-
@XiaochenDu Yes you are right, the question is regarding ios 6 – KingofBliss Jan 11 '13 at 06:26