tags:

views:

111

answers:

0

Hello all,

I have a viewForZoomingInScrollView with "hotspots" on top of it that allow you to click specific areas to get information on that area. The scrollview is allowing zooming of my image almost perfectly, except the small areas I have a hotspot, if I click on them, the "click" is not passed downwords, thus zoom/pinch is not detected.

Now my hotspots work on double tap because when the image is rather small, its easy to accidentally click one, but my final issue is how do I pass the click down to my ScrollView so it can still scroll?

Inside my touchesBegan class for my hotspot, I know I can pass it to the main class by using the following (parent is a preset variable of mine): [parent touchesBegan:touches withEvent:event];

I can likewise, successfully call the event for my scrollView, however my pinch zoom still do not get activated.

Please, any suggestions would be extremely appreciated.

Anthony Greco