ios - How can I keep an UIimageView on top of other uiimageviews when using pan or other gestures -
i have viewcontroller on can move multiple uiimageviews using gesture recognizers. it's working fine uiimageview selected not on top of others.
the uiimageviews keep order of creation last ones bellow first ones.
any advice?
when you've selected new uiimageview
- uiviewcontroller
should call:
[self.view bringsubviewtofront:imageview];
that should help.
Comments
Post a Comment