fileExistsAtPath只用路径获取文件名?

时间:2015-05-05 20:46:54

标签: ios iphone xcode dropbox-api

我正在使用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如何能够以相同的路径获取不同的图像?

0 个答案:

没有答案