Amnell / APParallaxHeader

Category that makes it super easy to add a parallax effect to your UIScrollView/UITableView

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Detecting Tap on Parallax Image

vicc opened this issue · comments

Is there an easy way to detect tap on the UIImageView to trigger a modal view? That would be awesome!

This should be easy with #8. Just create a custom view (or maby a button) that listens to taps and add it as a header instead of just an image.

I added a parallax view from XIB with the method addParallaxWithView:
[self.scrollView addParallaxWithView:self.parallaxHeader andHeight:205];
(self.parallaxHeader is linked from a xib)
screenshot 2014-09-11 11 02 47

Inside parallaxHeader I have an UIButton ("INSTALL NOW") with touch up inside event that should open a NSURL, but it doesn't work.