我想实现像Iphone Photo Gallery这样的东西......如何通过手指滑动图像,如果我想通过点击按钮来滑动照片,如何制作动画?感谢...
答案 0 :(得分:3)
看看Three20项目,它已经实现了很多这个画廊的东西,并且是开源的。它已经实现了扫描图像。如果你想自己做,UISwipeGestureRecognizer将是一个很好的起点。看看与之关联的示例代码。
答案 1 :(得分:0)
您需要在要滑动的视图上使用PanGestureRecogniser
。
UIPanGestureRecognizer *imgpan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(scrollBarDrag:)];
[imgpan setMaximumNumberOfTouches:1];
[self.svContainer addGestureRecognizer:imgpan];
[imgpan release];
定义此&随着平底锅正在发生,请在下一张图片中滑动...希望我很清楚。