2016-12-14 13 views
0

私は、ユーザーが、私は画像のURLを拾うImagePickerから任意の写真を選択するたびに、私はUIImagePickerController資産ライブラリ

からPhotoLibraryを表示しています、それをサーバーに画像を送信したいからURLを取得できません。

が、それは私がそれを行う方法file:///Users/Library/Developer/CoreSimulator/Devices/85CBED11-A318-4096-B52A-EBC3879F7B34/data/Containers/Data/Application/805BB62D-E32E-4D1E-99B6-C91103A1D99B/tmp/testing.doc

の形式になりたい(私のログの出力)localUrl =assets-library://asset/asset.JPG?id=106E99A1-4F6A-45A2-B320-B0AD4A8E8473&ext=JPG

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info { 
    [picker dismissViewControllerAnimated:YES completion:^{ 

     NSURL* localUrl = (NSURL *)[info valueForKey:UIImagePickerControllerReferenceURL]; 
     NSLog(@"localUrl =%@",localUrl); 

    }]; 

} 

たくない資産ライブラリの形式で示しています私はこれを達成する?

ご協力いただきありがとうございます。

+0

[アクセスアセットカタログpathForResource(http://stackoverflow.com/questions/18968352/access-asset-catalog-pathforresource)の可能性の重複 – shallowThought

答えて

0

このケースをなぜ行う必要があるのか​​わかりません。しかし、あなたはそれを試すことができます。

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info { 
    [picker dismissViewControllerAnimated:YES completion:^{  
     NSData *pngData = UIImagePNGRepresentation(ivPickedImage.image); 
     NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 
     NSString *documentsPath = [paths objectAtIndex:0]; //Get the docs directory 
     NSString *filePath = [documentsPath stringByAppendingPathComponent:@"image.png"]; //Add the file name 
     [pngData writeToFile:filePath atomically:YES]; //Write the file 
     NSLog(@"localUrl =%@",filePath); 
    }]; 
}