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

前端 未结 6 939
醉话见心
醉话见心 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......

提交回复
热议问题