开发者

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

开发者 https://www.devze.com 2023-04-11 17:29 出处:网络
I know this thread existed before, but was closed as only appear开发者_StackOverflow社区ing in iOS5 beta 6.

I know this thread existed before, but was closed as only appear开发者_StackOverflow社区ing 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.


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


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

Have you tried to set the delegate of the image picker to nil, in didFinishPickingImage ?


This is not your fault.It may be vary in different version.Apple should solve this issue.Main thing is that you should check for memory leak is important.Thanks


Try this UIImagePickerControllerSourceTypePhotoLibrary Error

I hope it will help


try setting

picker=nil

in the

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
[self dismissModalViewControllerAnimated:YES];
picker = nil;
}

it works for me......


Try this one, i am sure this is gonna help you;

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];

    [self setModalInPopover:YES];
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号