我正在编写一个具有iBooks书架视图的应用程序。
现在的问题是:我可以将书籍从一个地方拖放到另一个地方。但是当我将书籍拖到滚动视图的底部时,如何让这些发生:
我知道Github中有一个AQGridView,但似乎跳板演示不支持同时滚动和移动。(我已经将scrollEnable设置为YES)
答案 0 :(得分:16)
我会给你我的解决方案,但由于整个事情都很大,我只会给你相关的片段。
另外,请注意我使用手势识别器进行拖动(UILongPressGestureRecognizer),因为这是用户通过将手指按在对象上来启动在我的应用中拖动的方式。因此,您可以拖动的每个子视图都有自己的UILongPressGestureRecognizer,并且该识别器的目标/选择器位于管理scrollview和子视图的另一个类中。
这是手势识别器的目标:
-(void)dragged:(UILongPressGestureRecognizer *)panRecog
{
if (panRecog.state == UIGestureRecognizerStateBegan)
{
UIView * pannedView = panRecog.view;
dragView = pannedView;
dragView.center = [panRecog locationInView:scrollView];
[scrollView bringSubviewToFront:dragView];
[self startDrag]; // Not important, changes some stuff on screen to show the user he is dragging
return;
}
if (panRecog.state == UIGestureRecognizerStateChanged)
{
int xDelta = dragView.center.x - [panRecog locationInView:scrollView].x;
dragView.center = [panRecog locationInView:scrollView];
[self scrollIfNeeded:[panRecog locationInView:scrollView.superview] withDelta:xDelta];
return;
}
if (panRecog.state == UIGestureRecognizerStateEnded)
{
[self endDrag]; // Not important, changes some stuff on screen to show the user he is not dragging anymore
}
}
与您相关的事情:
这是代码
-(void)scrollIfNeeded:(CGPoint)locationInScrollSuperview withDelta:(int)xDelta
{
UIView * scrollSuperview = scrollView.superview;
CGRect bounds = scrollSuperview.bounds;
CGPoint scrollOffset = scrollView.contentOffset;
int xOfs = 0;
int speed = 10;
if ((locationInScrollSuperview.x > bounds.size.width * 0.7) && (xDelta < 0))
{
xOfs = speed * locationInScrollSuperview.x/bounds.size.width;
}
if ((locationInScrollSuperview.x < bounds.size.width * 0.3) && (xDelta > 0))
{
xOfs = -speed * (1.0f - locationInScrollSuperview.x/bounds.size.width);
}
if (xOfs < 0)
{
if (scrollOffset.x == 0) return;
if (xOfs < -scrollOffset.x) xOfs = -scrollOffset.x;
}
scrollOffset.x += xOfs;
CGRect rect = CGRectMake(scrollOffset.x, 0, scrollView.bounds.size.width, scrollView.bounds.size.height);
[scrollView scrollRectToVisible:rect animated:NO];
CGPoint center = dragView.center;
center.x += xOfs;
dragView.center=center;
}
这个东西只进行水平滚动,但处理垂直方向非常相似。它的作用是:
希望这可以帮到你。