gpt4 book ai didi

iphone - UIView拖拽(图片和文字)

转载 作者:太空狗 更新时间:2023-10-30 03:10:13 28 4
gpt4 key购买 nike

是否可以在 UIView 同时具有图像和文本的情况下在 iOS 屏幕上拖动它?例如小卡片。你能指出类似的(已解决的)主题吗?我还没有找到。

最佳答案

这就是基于 pepouze 的回答的简洁解决方案(经过测试,有效!)

- (void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event 
{
UITouch *aTouch = [touches anyObject];
CGPoint location = [aTouch locationInView:self];
CGPoint previousLocation = [aTouch previousLocationInView:self];
self.frame = CGRectOffset(self.frame, (location.x - previousLocation.x), (location.y - previousLocation.y));
}

关于iphone - UIView拖拽(图片和文字),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4982277/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com