How to get image path from photo library and how to retrieve the image from photo library in iphone?
问题 I'm new to iphone. In my small application, how to get image path from photo library. I use this following code to getting images and placed in imageview. -(IBAction) selectimage { UIImagePickerController *picker=[[UIImagePickerController alloc] init]; picker.delegate=self; picker.sourceType=UIImagePickerControllerSourceTypeSavedPhotosAlbum; [self presentModalViewController:picker animated:YES]; [picker release]; } -(void) imagePickerController:(UIImagePickerController *)UIPicker