I've a dynamic TableView, in every cell there's a MKMapView. I need that, when user tap the map (exclusively the map), app displays a new controller with expanded map.
I started placing an UITapGestureRecognizer on the map but I discovered that, from iOS 9 it doesn't works, so I followed this https://stackoverflow.com/a/35377200/2085352 and it works fine; trouble is that I can't find a way to detect from which cell does UITapGestureRecognizer come from.
I tried assigning a tag to every UITapGestureRecognizer but seems not possible, so what can I do?