Closed yulichandra closed 8 years ago
Thanks for your feedback! Could you tell me what did you put inside
photoPickerViewController:didFinishPickingImage:
? This link may can help
Ya, thanks i already solve it. I think because PHPhotoLibrary performChanges completionHandler
still in run in background and the picker dismiss it.
solve it :
[self performSelectorOnMainThread:@selector(didFinishPickingImage:) withObject:image waitUntilDone:YES];
-(void)didFinishPickingImage:(UIImage*)image{ [self.delegate photoPickerViewController:self didFinishPickingImage:image]; }
Great!
I got error like Error Log.txt.
Case :
I just implement it using
yms_presentAlbumPhotoViewWithDelegate
like your example