我正在使用Dropbox API
,我正在使用API委托方法Documents directory
将图片加载到应用的loadFile:intoPath:
中。 Dropbox的完成回调方法restClient:loadedFile:
可以用(NSString*) destPath
作为第二个参数激活。为每个文件返回的每个destPath都是相同的,如:
/Users/<myID>/Library/Developer/CoreSimulator/Devices/<Device #>/data/Containers/Data/Application/<App #>/Documents
但是当我这样称呼时:
UIImageView *imageView=[[UIImageView alloc] initWithFrame:CGRectMake(xPos, 0, 500, 500)];
[imageView setContentMode:UIViewContentModeScaleAspectFit];
imageView.image = [UIImage destPath];
[self.view addSubview:imageView];
...我得到四个截然不同的图像!这是怎么回事? Dropbox如何能够以相同的路径获取不同的图像?