QBImagePicker
QBImagePicker copied to clipboard
done button not called
select photos and click done button, but the delegate not call, the done action also not call
Hi! I have a similar problem. How you solved the problem?
@Mirach0rus @bupojung you should probably implement the following delegate method: -(void)qb_imagePickerController:(QBImagePickerController *)imagePickerController didSelectAssets:(NSArray *)assets
Hi. Actualy, I have the same problem. Your answer not help me. I already implement delegate this method and method, when user tap Cancel button. This method are called normaly: (void)qb_imagePickerControllerDidCancel:(QBImagePickerController *)imagePickerController But this method not called: -(void)qb_imagePickerController:(QBImagePickerController *)imagePickerController didFinishPickingAssets:(NSArray *)assets
What need I do? Help me, please.
This method not worked: -(void)qb_imagePickerController:(QBImagePickerController *)imagePickerController didFinishPickingAssets:(NSArray *)assets
But this method - worked for "Done" button: -(void)qb_imagePickerController:(QBImagePickerController *)imagePickerController didSelectAssets:(NSArray *)assets
me too. use cocoa pods 2.6.0 iOS 9.2
i face the same problem. didFinishPickingAssets not fired. So i used didSelectAssets method. But i have a problem maybe related with that method. I allowed to select 10 images. But it loads only 7 or 8 images. How can i make the didFinishPickingAssets run ?
QBImagePickerController delegate has weak reference that's why it's passed as nil to QBAlbumsViewController . I don't know what should be the best solution in this situation. Any updates?
When I choose pics, I can select 10 and more images. So, the best way to use didSelectAssets. Maybe, author will make new commit without bugs, what we are found?
I update data in didSelectAsset() and refresh to update UI in didFinishPickingAssets(), it works well.
I don't get done
button callbacks for any of the delegate methods in the newest 3.4.0 version