ios – 获取UIScrollView的当前位置

前端之家收集整理的这篇文章主要介绍了ios – 获取UIScrollView的当前位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我来自 Android,我在IOS中遇到了很多麻烦.我需要像电影一样制作滚动菜单.我使用下面的代码
rol = scroll_view.contentOffset.y;
timer = [NSTimer scheduledTimerWithTimeInterval:.02 target:self selector:@selector(timer_rol) userInfo:nil repeats:YES];

-(void)timer_rol{
    [scroll_view setContentOffset:CGPointMake(0,rol) animated:YES];
rol++;
}

代码工作正常,但当用户交互向上或向下滚动时,视图返回到之前的位置(rol的值).问题是,如何在滚动后获得当前内容位置

我已经尝试过这些代码,但没有人工作:

CGPoint point = [scroll_view contentOffset];
rol = r.y  +1;

-(void) handleGesture:(UIGestureRecognizer *) sender{}
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {}
-(void)scrollViewDidScroll:(UIScrollView *)scrollView {}

有人可以帮帮我吗?

解决方法

在timer_rol中:
[scroll_view setContentOffset:
    CGPointMake(0,scroll_view.contentOffset.y + 1) 
    animated:YES];

或者,如果您不希望X滚动更改,

[scroll_view setContentOffset:
    CGPointMake(scroll_view.contentOffset.x,scroll_view.contentOffset.y + 1) 
    animated:YES];
原文链接:https://www.f2er.com/iOS/330197.html

猜你在找的iOS相关文章