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

Popular posts from this blog

php - How to build a web site which gives a sub-domain dynamically to every registered user? -

c# - Add item to Generic List / Collection using reflection -