MRが楽しい

MRやVRについて学習したことを書き残す

iOSアプリのドキュメントフォルダをiPadの「ファイル」アプリで確認する

本日は iPad の小ネタ枠です。
iOS アプリのドキュメントフォルダを iPad の「ファイル」アプリで確認する手順を記事にします。
f:id:bluebirdofoz:20200606232400j:plain

自作アプリのドキュメントフォルダの公開を許可する

iPadの「ファイル」アプリでアプリのドキュメントフォルダを確認するには、対象の iOS アプリがドキュメントフォルダを公開している必要があります。
自作アプリでファイル共有を許可するには XCode のビルドで権限を設定しておく必要があります。
f:id:bluebirdofoz:20200606232410j:plain

XCode を開いたら[Info]タブを開きます。
[Custom iOS Target Propeties]を開き、[Key]の[+]ボタンをクリックして新規 Key を追加します。
f:id:bluebirdofoz:20200606232420j:plain

追加された Key のプルダウンを開きます。
[supports opening documents in place]を選択します。
f:id:bluebirdofoz:20200606232430j:plain

追加した[supports opening documents in place]の設定を[YES]に変更します。
f:id:bluebirdofoz:20200606232439j:plain

続けてもう一度[Key]の[+]ボタンをクリックして新規 Key を追加します。
f:id:bluebirdofoz:20200606232450j:plain

追加された Key のプルダウンを開きます。
[application supports itunes file sharing]を選択します。
f:id:bluebirdofoz:20200606232500j:plain

追加した[application supports itunes file sharing]の設定を[YES]に変更します。
f:id:bluebirdofoz:20200606232510j:plain

これで iOS アプリを iPad にビルド/インストールします。
f:id:bluebirdofoz:20200606232518j:plain

「フォルダ」アプリでドキュメントフォルダを確認する

iPad の「フォルダ」アプリを起動します。
f:id:bluebirdofoz:20200606232528j:plain

「場所」をタップして一覧を開きます。
f:id:bluebirdofoz:20200606232538j:plain

一覧から「このiPad内」をタップして選択します。
f:id:bluebirdofoz:20200606232547j:plain

インストールしたアプリ名のフォルダがか確認できます。
これが対象アプリのドキュメントフォルダです。
f:id:bluebirdofoz:20200606232556j:plain

注意点としてドキュメントフォルダ内にファイルが存在しないと、フォルダが表示されないようです。
その場合はアプリを一度起動して Unity フォルダを作成するなどの手順を行うと表示されます。
f:id:bluebirdofoz:20200606232608j:plain