在iPhone应用程序自动上传相机胶卷?(Auto upload camera roll in iP

2019-08-18 02:49发布

我苦苦寻找的东西自动从上传的照片库的照片到我的服务器端有用。 在我的iPhone应用程序,我婉为用户拍摄照片后的照片自动上传到服务器。 该方法的Facebook,Dropbox和谷歌加应用做。

任何帮助。

Answer 1:

晴这是一个3个步骤:

1)获取的照片。 它存储到文件目录 。 苹果已经很好的在这里描述的那样: PhotoPicker

2)获取从文档目录的照片:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *dataPath = [documentsDirectory stringByAppendingPathComponent:@"Images"];
UIImage *image = [[UIImage alloc] initWithContentsOfFile:[dataPath stringByAppendingPathComponent:[NSString stringWithFormat:@"yourImage.png"]]];

3)现在,你可以上传你的照片到服务器。 过程被很好地描述这里: 上传图像从iphone到服务器的文件夹



文章来源: Auto upload camera roll in iPhone Application?