I am using xcode 7.2 and Swift 2.1.1. I am using ELCImagePickerController through bridging header. When I use ELCImagePickerControllerDelegate in class declaration,it shows error- the viewcontroller does not conform to protocol 'ELCImagePickerControllerDelegate'
let picker = ELCImagePickerController()
picker.maximumImagesCount = 5
picker.delegate = self
self.presentViewController(picker, animated: true, completion: nil)
This is my objective c header #import "ELCImagePickerController.h"
When I use this code on button click event it goes to empty view and not the gallery.Can anyone help me to overcome this error.
Thanks in advance.