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

前端 未结 6 937
醉话见心
醉话见心 2020-12-06 05:13

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.

<
相关标签:
6条回答
  • 2020-12-06 05:50

    try setting

    picker=nil
    

    in the

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

    it works for me......

    0 讨论(0)
  • 2020-12-06 05:55

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

    - (void)viewDidAppear:(BOOL)animated
    {
        [super viewDidAppear:animated];
    
        [self setModalInPopover:YES];
    }
    
    0 讨论(0)
  • 2020-12-06 05:59

    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

    0 讨论(0)
  • 2020-12-06 06:00

    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 ?

    0 讨论(0)
  • 2020-12-06 06:06

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

    0 讨论(0)
  • 2020-12-06 06:10

    Try this UIImagePickerControllerSourceTypePhotoLibrary Error

    I hope it will help

    0 讨论(0)
提交回复
热议问题