我正在尝试构建一个简单的照片裁剪实用程序,用户可以在其中触摸并选择图片边界。我需要图像的确切触摸坐标。
当我使用
CGImageRef imageRef = [staticBG.image CGImage];
UITouch *touch = [touches anyObject];
CGPoint location = [touch locationInView:[self view]];
y3=location.y;
x3=location.x;
坐标 (x3,y3) 采用绝对比例,对于处理 imageRef 没有用处。
我尝试使用
UITouch *touch = [touches anyObject];
CGPoint touchPoint = [touch locationInView:staticBG];
但坐标仍然不完全匹配。
请帮忙。