3
Google Earthからkmlファイルとkmzファイルを開くことができるiOSアプリケーションを作成しようとしています。kmlとkmzのGoogle Earthファイルにiphoneアプリケーションを関連付けます。
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>application/vnd.google-earth.kml+xml</string>
</array>
<key>CFBundleTypeExtensions</key>
<array>
<string>kml</string>
</array>
<key>CFBundleTypeName</key>
<string>Google Kml</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
</dict>
</array>
助けてください:私は(私は別のアプリケーション、すなわちメールからKMLファイルを開こうとすると、私は自分のアプリケーションが一覧表示されません)cfgファイルに以下の行を追加したが、間違っている必要があります 私のエラーを見つけるために...
あなたのコード – Harish
重複を示してxmlファイルを読み取ろうとするか - http://stackoverflow.com/questions/ 2774343/how-do-i-associate-file-types-an-iphone-application – Fraser