iOS 5 GM: <Error>: More than maximum 5 filtered album lists trying to register. This will fail

Infinite picture Infinite · Oct 7, 2011 · Viewed 8k times · Source

I know this thread existed before, but was closed as only appearing in iOS5 beta 6. By now I have the Golden Master of iOS 5 on my phone and that error still appears.

This is happening when I create a UIImagePickerController with a sourceType of UIImagePickerControllerSourceTypePhotoLibrary more than 5 times. I am, as far as I can tell, creating and releasing the previous UIImagePickerController correctly each time.

Edit: adding code, as requested.

UIImagePickerController *ipc = [[UIImagePickerController alloc] init];
ipc.delegate = self;
ipc.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:ipc animated:YES];
[ipc release];

Later, I call [self dismissModalViewControllerAnimated:YES]; when -imagePickerController:didFinishPickingImage:editingInfo: gets called.

Answer

Michael T picture Michael T · Oct 16, 2011

The problem happens in Apple examples, so the best bet is to ignore.