Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个UIImageView手势识别器(缩放、旋转、翻译)。
UIImageView
但使用后,手势不起作用。
而我UIImageview的改变大小和位置。
UIImageview
如何解决这个问题?
默认情况下,UIImageViews 没有启用用户交互。尝试将 UIImageView 的用户交互设置为“YES”:
[myImageView setUserInteractionEnabled:YES];