シナリオ 1。このコードを使用して、Dropbox SDK を使用して Dropbox からファイルをダウンロードしました。
-(void)downloadFile:(DBMetadata*)file
{
if (!file.isDirectory)
{
NSString *documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *localPath = [documentsPath stringByAppendingPathComponent:file.filename];
[[self restClientForDownload] loadFile:file.path intoPath:localPath];
}
}
シナリオ 2. Documents ディレクトリから曲を再生したいとき。iPhone がパスワード ロックされている場合は再生されません。現在の曲も数秒で停止しました。