How to set the reverse navigation button "Photo album" to "Photo" in UIImagePickerController?
I tried my luck
Any idea how to customize the photo album navigation button back.
UIImagePickerController *albumPicker = [[UIImagePickerController alloc]init]; [albumPicker setDelegate:self]; [albumPicker setSourceType:UIImagePickerControllerSourceTypePhotoLibrary]; popOverController = [[UIPopoverController alloc]initWithContentViewController:albumPicker]; [popOverController presentPopoverFromRect:CGRectMake(0,0,templatePhotoPlaceholderView.frame.size.height/2,templatePhotoPlaceholderView.frame.size.height) inView:templatePhotoPlaceholderView permittedArrowDirections:UIPopoverArrowDirectionAny animated:NO]; [popOverController setPopoverContentSize:CGSizeMake(320, 480)]; [albumPicker release];
I want to set up photo albums on the photo shown on the image and saved photos on the photo How to do this I try to keep it from working
user891268
source share