Adding the tap gesture to the imageView present above the header and not getting inside the action
let headerTap = UITapGestureRecognizer(target: self, action: "headerClicked")
headerTap.delegate = self
headerTap.numberOfTapsRequired = 1
headerTap.numberOfTouchesRequired = 1
image.addGestureRecognizer(headerTap)