UIAccelerometer和UIScrollView

时间:2010-07-30 11:13:03

标签: iphone uiscrollview uiaccelerometer

我想根据UIAccelerometer值滚动滚动视图。实现这一目标的最佳方法是什么?

我的主要问题是使用加速度计值,我无法设置内容偏移量。因为scrollview本身使用特定的速度滚动,当我尝试使用加速度计值滚动时会发生混乱。

1 个答案:

答案 0 :(得分:0)

试试这个:

- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration {
    if (sv.tracking || sv.decelerating) return;
    CGPoint pt = sv.contentOffset;
    pt.x += acceleration.x * 2;
    pt.y -= acceleration.y * 2;
    if (pt.x < 0) pt.x = 0;
    if (pt.x > sv.contentSize.width - sv.frame.size.width) pt.x = sv.contentSize.width - sv.frame.size.width;
    if (pt.y < 0) pt.y = 0;
    if (pt.y > sv.contentSize.height - sv.frame.size.height) pt.y = sv.contentSize.height - sv.frame.size.height;
    sv.contentOffset = pt;
}