我希望能够在自定义视图中创建一个可移动的放大镜(类似于复制和粘贴时的放大镜),以缩放我的视图的一部分。

我不知道如何开始,你有什么想法吗?

在此先感谢您的帮助 :)

最佳答案

我们在填字游戏中做到这一点。在drawRect方法中,遮罩一个圆(使用包含放大镜“遮罩”的单色位图),并在其中使用2倍缩放变换绘制主题视图。然后在上面画一个放大镜图像就可以了。

- (void) drawRect: (CGRect) rect {
    CGContextRef    context = UIGraphicsGetCurrentContext();
    CGRect          bounds = self.bounds;
    CGImageRef      mask = [UIImage imageNamed: @"loupeMask"].CGImage;
    UIImage         *glass = [UIImage imageNamed: @"loupeImage"];

    CGContextSaveGState(context);
    CGContextClipToMask(context, bounds, mask);
    CGContextFillRect(context, bounds);
    CGContextScaleCTM(context, 2.0, 2.0);

    //draw your subject view here

    CGContextRestoreGState(context);

    [glass drawInRect: bounds];
}

关于iphone - iPhone,再现放大镜效果,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2030730/

10-13 06:35