我有一个小观点,我想附加到一个更大的观点。当其中一个视图在 x 轴上拖动时,我希望另一个相应移动 - 就好像它们是一个尴尬的形状视图
我试过了
UIDynamicAnimator *animator = [UIDynamicAnimator alloc] initWithReferenceView:self.view];
UIAttachmentBehavior *attach = [[UIAttachmentBehavior alloc] initWithItem:firstItem attachedToSecondItem:secondItem];
[animator addBehavior:attach];
但它们并没有像一个大视图那样移动:(