アプリから Web サービスに写真をアップロードしようとしています。
私が作成しようとしているフローは次のとおりです。
- ユーザーがカメラで写真を撮る
- 写真はカスタム アルバムの下のカメラ ロールに保存されます
- 保存した写真のURLがマイストアに付与される
- ストアは、写真を Web サービスにアップロードしようとします。
NSData *data = [NSData dataWithContentsOfURL:[item assetURL]]
対象の URL を含むモデルである where itemを使用しようとしています。しかし、この行は、URL を生成しても、ログに記録するとデータを生成しません。"assets-library://asset/asset.PNG?id=28DBC0AC-21FF-4560-A9D6-5F4BCA190BDB&ext=PNG"
コード スニペットは次のとおりです。
-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];
[self dismissViewControllerAnimated:YES completion:^(void){
[library writeImageToSavedPhotosAlbum:image.CGImage orientation:image.imageOrientation completionBlock:^(NSURL* assetURL, NSError* error) {
BCard *card = [[BCard alloc]init];
//error handling
if (error!=nil) {
NSLog(@"[ERROR] - %@",error);
return;
}
//add the asset to the custom photo album
[library addAssetURL: assetURL
toAlbum:@"Business Cards"
withCompletionBlock:^(NSError *error) {
if (error!=nil) {
NSLog(@"Custom Album Error: %@", [error description]);
}
}];
[card setAssetURL:assetURL];
[[BCardStore sharedStore]addToQueue:card];
int index = [[[BCardStore sharedStore]getQueue]count]-1;
[[BCardStore sharedStore]uploadItemAtIndex:index withProgressBlock:nil withExitBlock:nil];
}];
}];
}
と
-(void)uploadItemAtIndex:(NSUInteger)index withProgressBlock:(progressBlock)pBlock withExitBlock:(exitBlock)eBlock
{
BCard *item = [uploadQueue objectAtIndex:index];
NSURL *url = [NSURL URLWithString:@"http://192.168.0.116:8080"];
NSData *data = [NSData dataWithContentsOfURL:[item assetURL]];
AFHTTPClient *httpClient = [[AFHTTPClient alloc]initWithBaseURL:url];
numberedName = numberedName +1;
NSString *name = [NSString stringWithFormat:@"%d",numberedName];
NSLog(@"%@",[item assetURL]);
//upload data using AFNetworking here
}
スニペットは、ここで[library addAssetUrl:NSUrl toAlbum:NSString withCompletionBlock:^(NSError *error)]
見つけたカテゴリからのものです。
ここで本当に正しい URL を取得していますか、dataWithContentsOfURL
それとも間違って使用していますか?