Wie kann man in UIImagePickerController die Navigationsschaltfläche "Fotoalbum" auf "Foto" umstellen?
Ich habe mein Glück versucht
Haben Sie eine Idee, wie Sie die Navigationsschaltfläche für das Fotoalbum anpassen können?
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];
Ich möchte die Fotoalben an die im Bild gezeigten Fotos und die gespeicherten Fotos an die Fotos anpassen. Wie kann ich das tun? Ich habe es versucht, es funktioniert nicht für mich.