特殊リンク処理2009-08-09 (日) 20:19:00 (389d)
MobileSafari特有のリンク処理をまとめます
特殊リンク処理
- MobileSafariおよびネイティブアプリのコントロールでは、iPhone/iPod touch特有のリンク処理が行われます。
MobileSafariの記述
- HTMLドキュメントでAタグを利用する
ネイティブアプリの記述例
- openURL:
- UIApplicationオブジェクト
iPhone特有のリンク処理
メール送信
- mailto:のリンク処理記述例
<a href="mailto:frank@wwdcdemo.example.com">John Frank</a>
- ネイティブアプリでは、「mailto:frank@wwdcdemo.example.com」をopenURL:メソッドに渡せば良い。
- 複数の送信先や、subject 、from、本文を入力している例
mailto:foo@example.com?cc=bar@example.com&subject=
Greetings%20from%Cupertino!&body=Wish%20you%20were%20here!
電話
- 電話発番のリンクは下記。
<a href="tel:1-408-555-5555">1-408-555-5555</a>
- 自動的にコールするのをとめる場合は、電話番号自動判定のオフ設定をmetaタグで指定する。
<meta name = "format-detection" content = "telephone=no">
マップ
- マップアプリを指定の住所で開く
<a href="http://maps.google.com/maps?q=cupertino">Cupertino</a>
- 制限事項
- ドメインは、「maps.google.*」か「ditu.google.*」
- 「/」, 「/maps」, 「/local」, 「/m」
- 「/maps/*」は禁止
- パラメータに「view=text」「dirflg=r.」を含んではならない。
- サポートするGoogle Mapパラメータ
Parameter Notes q= The query parameter. This parameter is treated as if it had been typed into the query box by the user on the maps.google.com page. q=* is not supported near= The location part of the query. ll= The latitude and longitude points (in decimal format, comma separated, and in that order) for the map center point. sll= The latitude and longitude points from which the business search should be performed. spn= The approximate latitude and longitude span. sspn= A custom latitude and longitude span format used by Google. t= The type of map to display. z= The zoom level. saddr= The source address, which is used when generating driving directions daddr= The destination address, which is used when generating driving directions. latlng= A custom ID format that Google uses for identifying businesses. cid= A custom ID format that Google uses for identifying businesses.
YouTube?
- YouTube?呼び出し
http://www.youtube.com/watch?v=<video identifier>
http://www.youtube.com/v/<video identifier>
iTunes
- iTunes呼び出し
<a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum? i=156093464&id=156093462&s=143441"> <img height="15" width="61" alt="Randy Newman - Toy Story - You've Got a Friend In Me" src="http://ax.phobos.apple.com.edgesuite.net/images/badgeitunes61x15dark.gif"></img> </a>
RSS
- feed:// feeds:// (.Mac 会員向けの)フィードリーダー。※会員向けといいつつ、自動でここを使うようです。
スポンサード リンク
