Trying to register a tap on the collection view to dismiss the keyboard using the following
override func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath){
inputTextField.endEditing(true)
}
however I'm getting a compile error saying that the method doesn't override any method from it's superclass.
The class is of type UICollectionViewController and UICollectionViewDelegateFlowLayout
Also using swift 3.
Thanks.