iphone - How to ask UIImageView if MultipleTouchEnabled is "YES" -
i have created few uiimageviews programmatically, have feeling though setmultipletouchenabled yes during setup, not getting set , it's leading multi-touch issues.
my question is, within touchesbegan how go asking uiimageview touched if has multipletouchenabled or not?
i new i'm stumbling through code , learning go (with of course).
thank ahead of time!
multipletouchenabled
property of uiview
, can check using dot syntax property access like:
if (aview.multipletouchenabled) { nslog(@"multipletouch enabled"); }
Comments
Post a Comment