我来自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++;
}
该代码可以正常工作,但是当用户进行向上或向下滚动时, View 返回到之前的位置(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];
关于ios - 获取UIScrollView的当前位置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25451969/