在 UIButton 的一个子类中,我将 UIButton 附加到 UIAttachmentBehavior,它允许用户用手指在屏幕上拖动按钮。
在- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
我将按钮添加到 UIAttachmentBehavior,然后将行为添加到 UIDynamicAnimator。在- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
我将 UIAttachmentBehavior 的锚点更新为触摸点期间;这将创建所需的拖动效果。
现在我希望使用 CGAffineTransformScale 在触摸开始时增加按钮的大小,以便用户可以看到他们手指下的按钮。我的问题是,我使用 CGAffineTransformScale 应用的转换在我添加附件行为的第二次被立即覆盖。结果是按钮快速闪烁放大,但随后又恢复到原始大小。
我[_animator removeAllBehaviors]
在应用 CGAffineTransformScale 之前尝试过,然后将行为添加回来。[_animator updateItemUsingCurrentState:self]
在应用 CGAffineTransformScale 之后,在添加附件行为之前,我也尝试过。既不能解决问题。
更新 1:考虑到下面 HalR 的回答,我决定尝试在每次触摸时应用比例变换。因此,我将 CGAffineTransformScale 调用添加到touchesMoved:
和touchesEnded
。我正在使用 CGAffineTransformScale 与 CGAffineTransformMakeScale,因为它允许我保留附件行为添加的轻微旋转。它让我更接近了。该按钮现在在缩放时在屏幕上移动。虽然它并不完美。当您不在屏幕上移动时会出现闪烁,如果您停止移动,但按住触摸,按钮将恢复到原始大小。差不多了……有什么建议吗?
这是我更新的代码:
@interface DragButton : UIButton < UIDynamicAnimatorDelegate >
#import "DragButton"
#import <QuartzCore/QuartzCore.h>
@implementation DragButton
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesBegan:touches withEvent:event];
UITouch *touch = [[event allTouches] anyObject];
CGPoint touchLocation = [touch locationInView:self.referenceView];
self.transform = CGAffineTransformMakeScale(1.5, 1.5);
_touchAttachmentBehavior = [[UIAttachmentBehavior alloc] initWithItem:self attachedToAnchor:touchLocation];
[_animator addBehavior:_touchAttachmentBehavior];
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesMoved:touches withEvent:event];
UITouch *touch = [[event allTouches] anyObject];
CGPoint touchLocation = [touch locationInView:self.referenceView];
self.transform = CGAffineTransformScale(self.transform, 1.5, 1.5);
_touchAttachmentBehavior.anchorPoint = touchLocation;
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesEnded:touches withEvent:event];
self.transform = CGAffineTransformScale(self.transform, 1.5, 1.5);
[_animator removeBehavior:_touchAttachmentBehavior];
}