carousell / pickle

Carousell flavoured image picker with multiple photo selections.
https://carousell.github.com/pickle
Apache License 2.0
60 stars 25 forks source link

Objective-C method conflict #37

Closed DSofter closed 5 years ago

DSofter commented 5 years ago

image

Like the image above. Any idea why? Thanks!

bcylin commented 5 years ago

It looks like your ComposeViewController also implements UIImagePickerControllerDelegate methods.

// UIImagePickerControllerDelegate, you probably can remove this one if you implements Pickle.ImagePickerControllerDelegate.
func imagePickerControllerDidCancel(_ picker: UIImagePickerController)
// Pickle.ImagePickerControllerDelegate
func imagePickerControllerDidCancel(_ picker: Pickle.ImagePickerController)
DSofter commented 5 years ago

@bcylin That's true! Thank you so much!