I’d like to know how to implement a clickable image for an iPhone application using objective C. I want this image to be clickable at specific areas even when it is rotated. If for instance the top of an image goes to page A, and this gets rotated clockwise by 90 degrees I want this clickable area to change accordingly.
Is this possible?
hmmm, you could place
UIButton‘s (with custom backgrounds) next to each other to make up the image (like a puzzle) and then group them into aUIViewand instead of rotating theUIImageViewyou could rotate theUIViewwhich should still enable the clickable areas.