我想找到一种方法来为整个 UIView 设置动画,其中包含一些 ui 组件。这是我的代码片段:
UIRotationGestureRecognizer *rotationGesture = [[UIRotationGestureRecognizer alloc] initWithTarget:self action:@selector(rotatePiece:)];
[piece addGestureRecognizer:rotationGesture];
[rotationGesture release];
“一块”是一个uiview,我想旋转它,它工作得很好。但是当我在其中添加一些其他 UI 组件(如 UIbutton)(片段视图)时,当用户触摸这些 UI 组件时,手势无法正确识别。本质上,我希望父母即使在用户触摸子对象时也能听到手势。
有任何想法吗?