Apple製アプリでは下記が紹介されていた。SMSも行けるのか。
3.1 Safari 3.2 Maps 3.3 Phone 3.4 SMS 3.5 Mail 3.6 YouTube 3.7 iTunes 3.8 App Store 3.9 iBooks
Maps はちょうど知りたかった情報の一つ。こんな感じ(転載)。
NSString *title = @"title"; float latitude = 35.4634; float longitude = 9.43425; int zoom = 13; NSString *stringURL = [NSString stringWithFormat: @"http://maps.google.com/maps?q=%@@%1.6f,%1.6f&z=%d", title, latitude, longitude, zoom]; NSURL *url = [NSURL URLWithString:stringURL]; [[UIApplication sharedApplication] openURL:url];ホストは maps.google.com だが地図アプリが開くとのこと。確かに iPhoneのSafari だとGoogle Mpas には飛ばず、地図アプリが開いていた。"maps://" でも行けるらしい。
その他、主要なサードパーティ製アプリについてもまとめられている(Tweetieや Echofon、Facebook など)。
Responses
Leave a Response