0

メソッドを使用するstoreWithCallbacks:と、ファイルは appsDocuments/SavedFilesフォルダーに保存されます。

宛先を別のフォルダ パスに設定する方法はありますか?

以下は、私が電話をかけている方法です。BoxFilelocalURLは読み取り専用です。

- (void) downloadFile: (BoxFile *) boxFile
{
    [Box registerObserverForDownloadQueue: (id)self];

     [boxFile storeWithCallbacks:^(id <BoxOperationCallbacks> on)
     {
         on.after(^(BoxCallbackResponse response)
                  {
                       [Box removeObserverForDownloadQueue: (id)self];
                      // Proprietory code here and a call to update the folder listing.
                  });
     }];
}
4

1 に答える 1

0

現在、宛先を別のパスに設定する方法はありません。

于 2013-04-23T23:09:53.193 に答える