I want to get the complete url of selected image from photo library in iphone to NSString.
Is it possible
My code is
NSString * filePath;
UIImagePickerController * picker;
picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:picker animated:YES];
filePath = /* Here i ant to get the complete url of selected image*/
Please help