alexiscreuzot / KASlideShow

Ultra-basic slideshow for iOS (ARC only).
MIT License
206 stars 61 forks source link

tap on action image #56

Closed PrakashMaharjan closed 6 years ago

PrakashMaharjan commented 6 years ago

is there delegate to get tapped index/image in image??

alexiscreuzot commented 6 years ago

you can basically add a tap gesture on the slideshow and get its current index in your handling method.

PrakashMaharjan commented 6 years ago

Not sure exactly, as there is already a tap gesture defined in code as KASlideShowGestureTap so it triggers previous and next slide. [_slideshow addGesture:KASlideShowGestureTap]; // Gesture to go previous/next directly on the image } Anyway, thanks for response.