Touch through UIImageView?

2.4k Views Asked by At

I have a transparent UIImageView with a button behind it. How can I touch "through" it and press the button underneath it?

Thanks

1

There are 1 best solutions below

0
On BEST ANSWER

Use UIImageView.userInteractionEnabled = NO;

That prevents it from receiving touches and all the touches will go through it.