gpt4 book ai didi

ios - 滚动 UIImageView 图像

转载 作者:行者123 更新时间:2023-11-29 01:25:40 25 4
gpt4 key购买 nike

我想滚动我的 UIImageView 中的图像,以防我的手指在 UIImageView 区域内并且我正在移动我的手指。我正在尝试使用 objective-c 来做到这一点。我让它动起来了,但它表现得很奇怪而且不能正常工作。你能告诉我怎么做吗???

这就是我正在做的:

- (void)touchesMoved :(NSSet *)touches withEvent:(UIEvent *)event{

for (UITouch *touch in touches) {

CGPoint touchLocation = [touch locationInView:self];

for (id sublayer in view_shape.sublayers) {


if (sublayer ==imageView.layer) {


if (CGRectContainsPoint(imageView.frame, touchLocation)) {


imageView.layer.contentsRect = CGRectMake( touchLocation.x/1000,
touchLocation.y/1000,

imageView.layer.contentsRect.size.width,

imageView.layer.contentsRect.size.height);

}



}

}

}

}

最佳答案

为什么不使用 scrollView 而只是将 imageView 添加到它

关于ios - 滚动 UIImageView 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34056315/

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