我有一个UIImageView元素作为我的主UIScrollView元素的子视图。 我希望Image始终填满整个屏幕,但我可以将边缘拖得太远,以便黄色"背景"变得可见。 如果我抬起手指,图像会反弹"返回并正确填写屏幕。
我想阻止将此图像拖离屏幕。 但是,当我将图像拖出"安全区域时,我确实希望图像能够反弹。
这是我的ScrollView初始化:
- (id)initWithFrame:(CGRect)frame{
self = [super initWithFrame:CGRectMake(0, 0, frame.size.height, frame.size.width)];
if (self) {
[self initImageValues];
self.showsVerticalScrollIndicator = NO;
self.showsHorizontalScrollIndicator = NO;
self.bouncesZoom = YES;
self.decelerationRate = UIScrollViewDecelerationRateFast;
self.delegate = self;
self.backgroundColor = [UIColor yellowColor];
self.minimumZoomScale = 1.0;
self.maximumZoomScale = 2.0;
[self setCanCancelContentTouches:YES];
self.clipsToBounds = YES;
// Load Image
imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:imageName]];
[self addSubview:imageView];
[self setContentSize: CGSizeMake(imageView.frame.size.width, imageView.frame.size.height)];
// Set bigger "bounce" zone (safety area)
self.contentInset=UIEdgeInsetsMake(-SAFETY_ZONE,-SAFETY_ZONE,-SAFETY_ZONE,-SAFETY_ZONE);
self.scrollEnabled = YES;
}
return self;}
答案 0 :(得分:2)
使用这些委托方法:
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
然后读取偏移并返回它是否超出“安全区域”。
虽然你可能需要UIScrollView中的另一个委托方法,但是这样的解决方法可以解决你的问题:)
答案 1 :(得分:0)
尝试将其bounces
属性设置为NO
。
答案 2 :(得分:0)
尝试在滚动视图上设置跳出:
self.bounces = NO;
答案 3 :(得分:0)
尝试这个: **
self.scrollView.maximumZoomScale = 1.0;
self.scrollView.minimumZoomScale = 1.0;
**