So I dragged a pinch gesture recognizer into my storyboard and hooked that up to an IBAction to feed an image into an ImageView when the user does the pinch motion. However when I run the simulator and do the pinch motion with the option key and everything, nothing happens/ is recognized. What's going on?
My code:
@IBAction func pinchGesture(sender: UIPinchGestureRecognizer) {
eggView.image = UIImage (named: "Easter_egg")
}