I tried to implement a new type of zoom-in. Kinda like the pinching gesture, the scale factor is determined by the distance between two touch points. However, the zoom-in center, or anchor point, is neither the center of the zoomed view, nor the center between two touch points. It's actually one of the two touch points. Below is my implementation:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
NSArray *allTouches = [touches allObjects];
if([allTouches count] >= 2) {
CGPoint p1 = [[allTouches objectAtIndex:0] locationInView:self];
CGPoint p2 = [[allTouches objectAtIndex:1] locationInView:self];
initialDistance = distanceBetweenPoints(p1, p2);
}
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
NSArray *allTouches = [touches allObjects];
if([allTouches count] >= 2) {
CGPoint p1 = [[allTouches objectAtIndex:0] locationInView:self];
CGPoint p2 = [[allTouches objectAtIndex:1] locationInView:self];
currentDistance = distanceBetweenPoints(p1, p2);
CGPoint anchorPoint = CGPointMake(p1.x / self.bounds.size.width, p1.y / self.bounds.size.height);
[self setAnchorPoint:anchorPoint forView:self];
CGFloat scale = lastScale * (currentDistance / initialDistance);
CGAffineTransform newTransform = CGAffineTransformMakeScale(scale, scale);
self.transform = newTransform;
lastScale = scale;
}
}
distanceBetweenPoints is the method for calculating distance between two points.
static inline CGFloat distanceBetweenPoints (CGPoint first, CGPoint second) {
CGFloat deltaX = second.x - first.x;
CGFloat deltaY = second.y - first.y;
return sqrt(deltaX*deltaX + deltaY*deltaY );
};
Below is the method that maintains the view when anchor point is set.
-(void)setAnchorPoint:(CGPoint)anchorPoint forView:(UIView *)view
{
CGPoint newPoint = CGPointMake(view.bounds.size.width * anchorPoint.x, view.bounds.size.height * anchorPoint.y);
CGPoint oldPoint = CGPointMake(view.bounds.size.width * view.layer.anchorPoint.x, view.bounds.size.height * view.layer.anchorPoint.y);
newPoint = CGPointApplyAffineTransform(newPoint, view.transform);
oldPoint = CGPointApplyAffineTransform(oldPoint, view.transform);
CGPoint position = view.layer.position;
position.x -= oldPoint.x;
position.x += newPoint.x;
position.y -= oldPoint.y;
position.y += newPoint.y;
view.layer.position = position;
view.layer.anchorPoint = anchorPoint;
}
Theoretically, this should work. As a matter of fact, this does work, except for its awful efficiency. The view gets stuck constantly. I'm wondering is there any options for achieving the same goal? And how does zoom-in with anchor point on UIScrollView run so smooth?