更改位置inview UITouch

发布于 2024-11-18 19:48:25 字数 391 浏览 3 评论 0原文

我正在使用下面的代码在屏幕上拖动图像。我喜欢改变的一件事是图像的位置。现在,每次触摸时位置都会发生变化,因此每次我尝试移动它时,它都会转换为我的手指。我该如何制作它才能相对于我的手指移动?例如,如果图像位于屏幕中间,并且我将手指放在屏幕的右下角,则图像不会转换为我的手指。希望这是有道理的。提前致谢。

// get touch event
UITouch *touch = [[event allTouches] anyObject];

// get the touch location
CGPoint touchLocation = [touch locationInView:touch.view];

// move the image view
image.center = touchLocation;

i'm using this code below to drag an image across the screen. The one thing i like to change is the location of the image. Right now, the location changes to every touch so everytime i try to move it, it translate to my finger. How do i make it so it can move relative to my finger? e.g. if the image is in the middle of the screen, and i put my finger at the bottom right of the screen, the image don't get translate to my finger. Hope that makes sense. Thanks in advance.

// get touch event
UITouch *touch = [[event allTouches] anyObject];

// get the touch location
CGPoint touchLocation = [touch locationInView:touch.view];

// move the image view
image.center = touchLocation;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文