我在我的应用程序中集成了 Dropbox。我已经完成了向用户显示文件的程度,他们可以选择要下载的文件。我知道我需要调用此行,但我不知道 iPhone 上的本地文件路径是什么。它只需要是临时的,因为一旦我有了文本文件,我就会处理它......我的问题是本地文件路径是什么。先感谢您。
[[self restClient] loadFile:[filePaths objectAtIndex:indexPath.row] intoPath:localPath]
根据下面的答案更新:::Still NOT WORK
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
NSString *localPath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingString:[filePaths objectAtIndex:indexPath.row]];
[[self restClient] loadFile:[filePaths objectAtIndex:indexPath.row] intoPath:localPath];
NSLog(@"%@",[NSString stringWithContentsOfFile:localPath encoding:NSUTF8StringEncoding error:nil]);
}